/* ===== About page ===== */

:root {
  --about-muted-2: #8a8a8a;
  --about-hairline-soft: rgba(255, 255, 255, 0.08);
  --about-hairline: rgba(255, 255, 255, 0.1);
  --about-border-btn: rgba(255, 255, 255, 0.22);
  --about-date: rgba(255, 255, 255, 0.65);
  --about-metal-1: #cacaca;
  --about-metal-2: #b2b2b2;
  --about-nav-idle: rgba(255, 255, 255, 0.7);
}

/* Nav "current page" highlight — additive only, homepage nav never sets aria-current so this is inert there */
.nav a[aria-current="page"] {
  color: var(--accent);
}

/* When GSAP drives .reveal elements, hand off timing entirely to it so the
   CSS transition doesn't also react to GSAP's own per-frame style writes. */
.gsap-active .reveal {
  transition: none;
}

.about-heading--metal {
  background: linear-gradient(108deg, var(--about-metal-1) 3.47%, var(--about-metal-2) 91.6%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-section--light {
  background: var(--paper-strong);
  color: var(--ink);
}

.about-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--paper-strong);
}

.about-kicker::before {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: currentColor;
  clip-path: polygon(50% 0%, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0% 50%, 39% 39%);
}

.about-kicker__rule {
  width: 94px;
  height: 1px;
  background: var(--about-hairline-soft);
}

.about-kicker__tag {
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

.about-kicker--plain {
  font-size: 24px;
  text-transform: uppercase;
}

.about-kicker--dark {
  font-size: 24px;
  text-transform: uppercase;
  color: var(--ink);
}

.about-kicker--dark::before {
  background: var(--ink);
}

/* ---------- Masthead ---------- */

.about-masthead {
  position: relative;
  min-height: 900px;
  overflow: clip;
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
  color: var(--paper-strong);
  border-bottom: 1px solid var(--about-hairline-soft);
}

.about-masthead__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-masthead__art {
  position: absolute;
  top: -22%;
  left: 8%;
  width: 123%;
  max-width: none;
  transform: rotate(28.74deg);
  opacity: 0.92;
}

.about-masthead__glow {
  position: absolute;
  top: -36%;
  left: -6%;
  width: 108%;
  aspect-ratio: 2360 / 1509;
  opacity: 0.7;
}

.about-masthead__frame {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: var(--frame);
  min-height: 900px;
  margin-inline: auto;
  padding: 34px 0 64px;
}

.about-masthead__frame > .about-kicker {
  margin-top: 74px;
}

.about-masthead__content {
  margin-top: auto;
  padding-top: 220px;
  max-width: 680px;
}

.about-eyebrow {
  margin: 0 0 24px;
  font-size: 12px;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--paper-strong);
}

.about-masthead__title {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.13;
  font-weight: 400;
  text-transform: uppercase;
}

/* ---------- Mission ---------- */

.about-mission__frame {
  padding: 40px 0 140px;
  border-top: 1px solid var(--about-hairline-soft);
}

.about-mission__intro {
  max-width: 792px;
  margin-left: auto;
}

.about-mission__title {
  margin: 24px 0 0;
  font-size: clamp(26px, 2.9vw, 42px);
  line-height: 1.13;
  font-weight: 400;
  text-transform: uppercase;
}

.about-mission__hub {
  display: flex;
  justify-content: center;
  margin-top: 96px;
}

.about-mission__circle {
  position: relative;
  width: min(754px, 90vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-mission__circle-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 46px;
  width: min(443px, 78%);
}

.about-mission__circle-title {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.13;
  font-weight: 400;
  text-transform: uppercase;
}

.about-mission__circle-body {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--about-muted-2);
}

.about-round-cta {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--paper-strong);
  color: var(--ink);
  font-size: 18px;
  transition: transform 220ms var(--ease);
}

.about-round-cta:hover {
  transform: translateX(-50%) translateY(-2px);
}

/* ---------- Team ---------- */

.about-team__frame {
  padding: 32px 0 96px;
}

.about-team__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}

.about-outline-btn,
.about-solid-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--paper-strong);
  transition: transform 220ms var(--ease), background-color 220ms ease, border-color 220ms ease;
}

.about-outline-btn {
  border: 1px solid var(--about-border-btn);
}

.about-solid-btn {
  background: var(--accent);
}

.about-outline-btn:hover,
.about-solid-btn:hover,
.about-news__link:hover span:last-child {
  transform: translateY(-2px);
}

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.about-team__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--about-hairline);
}

.about-team__photo {
  height: 342px;
  overflow: hidden;
  background: var(--bg-2);
}

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

.about-team__name {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
  color: var(--paper-strong);
}

.about-team__role {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--accent);
}

/* ---------- Approach ---------- */

.about-approach__frame {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px;
  padding: 23px 0 32px;
  border-top: 1px solid var(--about-hairline-soft);
}

.about-approach__title {
  margin: 0;
  flex: 1 1 320px;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(26px, 2.9vw, 42px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 2.1px;
  text-transform: uppercase;
}

.about-approach__accent {
  color: var(--cyan);
}

.about-approach__body {
  flex: 1 1 260px;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.about-approach__visual {
  margin: 0;
  line-height: 0;
}

.about-approach__visual img,
.about-approach__visual video {
  width: 100%;
  height: auto;
  aspect-ratio: 1440 / 755;
  object-fit: cover;
}

/* ---------- Sustainability ---------- */

.about-sustain__frame {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 1fr);
  align-items: center;
  gap: 48px;
  padding: 51px 0;
  border-top: 1px solid var(--about-hairline);
  border-bottom: 1px solid var(--about-hairline);
  overflow: clip;
}

.about-sustain__visual {
  margin: 0;
  aspect-ratio: 1 / 1;
  transform: rotate(-8deg);
}

.about-sustain__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-sustain__content {
  max-width: 588px;
}

.about-sustain__title {
  margin: 18px 0 24px;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.13;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--ink);
}

.about-sustain__body {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
}

.about-sustain__plus {
  position: absolute;
  top: 29px;
  right: 30px;
  width: 42px;
  height: 42px;
}

.about-sustain__plus::before,
.about-sustain__plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%) rotate(45deg);
}

.about-sustain__plus::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Decorative repeating brand-ribbon strip along the bottom of the section —
   reuses the same footer-ribbon.svg silhouette already shipped for the
   footer, tinted for the light section instead of the footer's white. */
.about-sustain__ribbon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 32px;
  height: 64px;
  background-color: #16a34a;
  -webkit-mask: url("./assets/footer-ribbon.svg") center / contain no-repeat;
  mask: url("./assets/footer-ribbon.svg") center / contain no-repeat;
  pointer-events: none;
}

/* ---------- Career ---------- */

.about-career__frame {
  padding: 23px 0 26px;
  border-top: 1px solid var(--about-hairline);
}

.about-career__row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 117px;
  padding-bottom: 32px;
}

.about-career__body {
  max-width: 588px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-career__title {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.13;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--ink);
}

.about-career__copy {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 1.6;
  color: #000000;
}

.about-career__copy a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about-career__photo {
  margin: 0;
  border-top: 1px solid var(--about-hairline);
  border-bottom: 1px solid var(--about-hairline);
}

.about-career__photo img {
  width: 100%;
  height: min(721px, 60vw);
  object-fit: cover;
}

/* ---------- News ---------- */

.about-news__frame {
  padding: 32px 0;
}

.about-news__frame > .about-kicker {
  margin-bottom: 32px;
}

.about-news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 24px;
}

.about-news__card {
  display: flex;
  flex-direction: column;
}

.about-news__index {
  padding-bottom: 8px;
  font-size: 10px;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--about-date);
}

.about-news__box {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 14px;
  border: 1px solid var(--about-hairline);
}

.about-news__media {
  position: relative;
  height: 263px;
  overflow: hidden;
  background: var(--bg-2);
}

.about-news__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-news__tags {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.about-news__tags span {
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--paper-strong);
  color: #000000;
  font-family: "Geist Mono", "Roboto Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
}

.about-news__date {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--about-date);
}

.about-news__title {
  flex: 1;
  margin: 8px 0 74px;
  font-size: clamp(20px, 2vw, 32px);
  line-height: 1.13;
  font-weight: 400;
  text-transform: uppercase;
}

.about-news__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  line-height: 1.6;
  color: var(--paper-strong);
}

.about-news__link span:last-child {
  display: inline-block;
  transition: transform 220ms var(--ease);
}

/* ---------- Responsive ---------- */

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

  .about-news__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .about-sustain__visual {
    width: min(360px, 70vw);
    margin-inline: auto;
  }

  .about-career__row {
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .about-masthead {
    min-height: auto;
  }

  .about-masthead__content {
    padding-top: 120px;
  }

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

  .about-team__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .about-approach__frame {
    flex-direction: column;
  }

  .about-career__photo {
    display: none;
  }
}
