.about-page {
  width: min(1380px, 100%);
  margin: 0 auto;
  padding: 20px 56px 78px;
  position: relative;
}

.about-page::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 34px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.18;
  background:
    radial-gradient(circle at center, transparent 54%, rgba(255, 255, 255, 0.06) 54.8%, transparent 56%),
    radial-gradient(circle at center, transparent 67%, rgba(255, 255, 255, 0.05) 67.8%, transparent 69%),
    radial-gradient(circle at center, transparent 80%, rgba(255, 255, 255, 0.04) 80.8%, transparent 82%);
}

/* HERO */
.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 460px);
  gap: 28px;
  align-items: stretch;
  padding: 34px 0 28px;
}

.about-copy,
.about-photo-card {
  min-height: 100%;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: 34px 34px 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)),
    rgba(10, 10, 10, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 1;
}

.about-copy h1 {
  font-size: clamp(48px, 5.8vw, 82px);
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 0.95;
  margin-bottom: 18px;
}

.about-copy h1::after {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  margin-top: 24px;
  background: var(--accent);
}

.about-intro {
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 21px);
  font-weight: 300;
  line-height: 1.6;
}

.quote-card {
  padding: 28px 28px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.015);
}

.quote-mark {
  display: inline-block;
  color: var(--accent);
  font-size: 44px;
  line-height: 1;
  margin-bottom: 6px;
}

.quote-card p {
  color: var(--text);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.55;
  font-style: italic;
}

.quote-card small {
  display: inline-block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.4px;
}

.about-photo-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #050505;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
}

.about-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.03) saturate(0.94) brightness(0.92);
}

/* CONTENT GRID */
.about-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.85fr);
  gap: 28px;
  margin-top: 8px;
  align-items: stretch;
}

.about-story-card,
.gear-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(10, 10, 10, 0.78);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}

.about-story-card {
  padding: 34px 34px 36px;
}

.about-story-card p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 18px;
  text-align: justify;
  text-justify: inter-word;
}

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

.about-story-card strong {
  color: var(--text);
  font-weight: 500;
}

.gear-card {
  padding: 30px 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.gear-title {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.gear-title::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-top: 14px;
  background: var(--accent);
}

.gear-block {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.gear-block:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.gear-block h2 {
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.gear-block ul {
  list-style: none;
}

.gear-block li {
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
}

/* TABLET */
@media (max-width: 1100px) {
  .about-hero,
  .about-content-grid {
    grid-template-columns: 1fr;
  }

  .about-copy {
    gap: 22px;
  }

  .about-photo-card {
    max-width: 560px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .about-page {
    padding: 8px 18px 46px;
  }

  .about-page::before {
    left: -110px;
    top: 8px;
    width: 300px;
    height: 300px;
    opacity: 0.16;
  }

  .about-hero {
    gap: 18px;
    padding: 24px 0 18px;
  }

  .about-copy {
    padding: 24px 22px 22px;
    gap: 20px;
    border-radius: 14px;
  }

  .about-copy h1 {
    font-size: 54px;
    line-height: 0.98;
    margin-bottom: 14px;
  }

  .about-copy h1::after {
    width: 44px;
    margin-top: 20px;
  }

  .about-intro {
    font-size: 17px;
    line-height: 1.65;
  }

  .quote-card {
    padding: 22px 20px 20px;
    border-radius: 12px;
  }

  .quote-mark {
    font-size: 38px;
    margin-bottom: 4px;
  }

  .quote-card p {
    font-size: 18px;
    line-height: 1.6;
  }

  .about-photo-card {
    border-radius: 14px;
  }

  .about-photo-card img {
    aspect-ratio: 4 / 5;
  }

  .about-content-grid {
    gap: 16px;
    margin-top: 10px;
  }

  .about-story-card,
  .gear-card {
    border-radius: 14px;
  }

  .about-story-card {
    padding: 22px 20px 24px;
  }

  .about-story-card p {
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 16px;
    text-align: justify;
    text-justify: inter-word;
  }

  .gear-card {
    padding: 22px 20px 24px;
  }

  .gear-title {
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 16px;
  }

  .gear-block {
    padding: 16px 0;
  }

  .gear-block h2 {
    font-size: 12px;
    letter-spacing: 2.4px;
    margin-bottom: 10px;
  }

  .gear-block li {
    font-size: 14px;
    line-height: 1.8;
  }
}

@media (max-width: 420px) {
  .about-copy h1 {
    font-size: 46px;
  }

  .about-intro {
    font-size: 16px;
  }

  .quote-card p {
    font-size: 17px;
  }
}