/* ---------- About page: editorial magazine ---------- */

.about { background: var(--paper); }

/* =========================================================
   Hero
   ========================================================= */
.about-hero {
  background: var(--paper);
  padding-top: clamp(40px, 5vw, 80px);
  padding-bottom: clamp(48px, 6vw, 96px);
  border-bottom: 1px solid var(--line);
}
.about-hero__crumb {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}
.about-hero__crumb a { color: inherit; }
.about-hero__crumb a:hover { color: var(--lalu-red); }
.about-hero__crumb span { margin: 0 10px; opacity: 0.5; }

.about-hero__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: end;
}
@media (max-width: 900px) {
  .about-hero__grid { grid-template-columns: 1fr; gap: 48px; }
}

.about-hero__eye {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--lalu-red);
  margin-bottom: 24px;
}
.about-hero__headline {
  font-family: var(--f-sans);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 0.98;
  text-transform: uppercase;
  font-size: clamp(40px, 6.2vw, 96px);
  margin: 0 0 28px;
}
.about-hero__sub {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 62ch;
  margin: 0 0 32px;
}

.about-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
@media (max-width: 600px) { .about-hero__meta { grid-template-columns: 1fr; } }

.about-hero__meta-k {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.about-hero__meta-v {
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
}

.about-hero__img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--r-sm);
  background: var(--paper-2);
}
.about-hero__img .ph {
  border-radius: var(--r-sm);
}
.about-hero__img .ph img { width: 100%; height: 100%; object-fit: cover; }

.about-hero__img-cap {
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding-top: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.about-hero__img-cap-k { color: var(--lalu-red); }
.about-hero__img-cap-v { color: var(--ink-2); }

/* =========================================================
   Story (editorial 2-col)
   ========================================================= */
.about-story { background: var(--paper); }
.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 96px);
  align-items: start;
}
@media (max-width: 900px) {
  .about-story__grid { grid-template-columns: 1fr; gap: 32px; }
}
.about-story__eye {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.about-story__head {
  font-size: clamp(32px, 3.8vw, 58px);
  margin-bottom: 24px;
}
.about-story__kicker {
  font-family: var(--f-sans);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  color: var(--lalu-red);
  margin: 0;
}
.about-story__right p {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 20px;
  max-width: 58ch;
}
.about-story__right p:last-child { margin-bottom: 0; }
.about-story__right p em {
  font-family: var(--f-display);
  font-weight: 400;
  color: var(--ink);
}

/* =========================================================
   What we do (6-up grid)
   ========================================================= */
.about-what { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-what__head {
  max-width: 820px;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.about-what__eye {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lalu-red);
  margin-bottom: 16px;
}
.about-what__lede { margin-top: 20px; }

.about-what__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
}
@media (max-width: 900px) { .about-what__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .about-what__grid { grid-template-columns: 1fr; } }

.about-what__card {
  position: relative;
  background: var(--paper);
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color 0.25s, transform 0.35s cubic-bezier(.2,.7,.2,1);
}
.about-what__card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.about-what__card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: -20px -20px 20px;
  background: var(--paper-2);
  border-radius: var(--r-sm) var(--r-sm) 0 0;
}
.about-what__card-img .ph { border-radius: var(--r-sm) var(--r-sm) 0 0; }
.about-what__card-img .ph img { width: 100%; height: 100%; object-fit: cover; }

.about-what__card-n {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--lalu-red);
  margin-bottom: 10px;
}
.about-what__card-title {
  font-family: var(--f-sans);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.about-what__card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

/* =========================================================
   By the numbers
   ========================================================= */
.about-stats {
  background: var(--ink);
  color: #fff;
}
.about-stats__head { max-width: 820px; margin-bottom: clamp(36px, 4vw, 64px); }
.about-stats__eye {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lalu-red);
  margin-bottom: 16px;
}
.about-stats__headline { color: #fff; }

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: clamp(32px, 4vw, 56px);
}
@media (max-width: 900px) { .about-stats__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .about-stats__grid { grid-template-columns: 1fr; } }

.about-stats__cell {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-stats__num {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: #fff;
}
.about-stats__lbl {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
  max-width: 28ch;
}

/* =========================================================
   Why (reasons list)
   ========================================================= */
.about-why { background: var(--paper); }
.about-why__head { max-width: 820px; margin-bottom: clamp(32px, 4vw, 56px); }
.about-why__eye {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lalu-red);
  margin-bottom: 16px;
}

.about-why__list {
  border-top: 1px solid var(--line);
}
.about-why__row {
  display: grid;
  grid-template-columns: 80px 1.2fr 2fr;
  gap: clamp(20px, 3vw, 48px);
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
@media (max-width: 800px) {
  .about-why__row {
    grid-template-columns: 50px 1fr;
    row-gap: 8px;
  }
  .about-why__desc { grid-column: 2 / -1; }
}
.about-why__n {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--lalu-red);
}
.about-why__title {
  font-family: var(--f-sans);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
.about-why__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  max-width: 62ch;
}

/* =========================================================
   Selected work
   ========================================================= */
.about-work {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}
.about-work__head { max-width: 820px; margin-bottom: clamp(36px, 4vw, 64px); }
.about-work__eye {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lalu-red);
  margin-bottom: 16px;
}
.about-work__lede { margin-top: 20px; }

.about-work__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
}
@media (max-width: 900px) { .about-work__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .about-work__grid { grid-template-columns: 1fr; } }

.about-work__card {
  display: block;
  color: inherit;
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1);
}
.about-work__card:hover { transform: translateY(-3px); }

.about-work__card-img {
  position: relative;
  aspect-ratio: 4 / 5;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: var(--r-sm);
  background: var(--paper-2);
}
.about-work__card-img .ph img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.about-work__card:hover .about-work__card-img .ph img { transform: scale(1.04); }

.about-work__card-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-top: 6px;
}
.about-work__card-name {
  font-family: var(--f-sans);
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 500;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--ink);
}
.about-work__card-arrow {
  color: var(--ink);
  opacity: 0.6;
  transition: opacity 0.2s, transform 0.35s cubic-bezier(.2,.7,.2,1);
}
.about-work__card:hover .about-work__card-arrow {
  opacity: 1;
  transform: translate(2px, -2px);
  color: var(--lalu-red);
}
.about-work__card-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.about-work__all {
  margin-top: clamp(36px, 4vw, 56px);
  text-align: center;
}
