body {
  background: #101010;
}

.about-page {
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.96) 0%, rgba(8, 8, 8, 1) 100%);
  color: #f2f2f2;
}

.site-header--static .site-nav a,
.site-header--static .logo-link {
  color: rgba(255, 255, 255, 0.92);
}

.site-header--static .site-nav a::after {
  background: rgba(255, 255, 255, 0.92);
}

.about-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.about-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-reveal-child {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-reveal.is-visible .about-reveal-child,
.about-reveal-child.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-hero__media,
.about-hero__overlay {
  position: absolute;
  inset: 0;
}

.about-hero__media {
  background-image: var(--about-hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 1.25s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.9s ease;
}

.about-reveal--hero.is-visible .about-hero__media {
  transform: scale(1.02);
}

.about-hero__overlay {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.18) 0%, rgba(8, 8, 8, 0.84) 100%),
    linear-gradient(90deg, rgba(8, 8, 8, 0.76) 0%, rgba(8, 8, 8, 0.18) 56%);
}

.about-hero__content,
.about-story,
.about-gallery,
.about-quote {
  width: min(calc(100% - 24px), 1720px);
  margin: 0 auto;
}

.about-hero__content {
  position: relative;
  z-index: 1;
  padding: 0 0 74px;
}

.about-kicker,
.about-section-label {
  font-family: "Futura", "Trebuchet MS", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.about-title {
  margin-top: 14px;
  max-width: min(100%, 880px);
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.92;
  font-weight: 500;
}

.about-title strong,
.about-quote__text strong {
  font-weight: 600;
}

.about-emphasis {
  font-weight: 700;
}

.about-emphasis-soft {
  font-weight: 500;
}

.about-lead {
  margin-top: 24px;
  max-width: 680px;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
}

.about-story {
  padding: 52px 0 20px;
}

.about-story__intro,
.about-gallery__head {
  display: grid;
  gap: 12px;
  align-self: start;
}

.about-section-title {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.92;
  font-weight: 500;
}

.about-story__summary {
  max-width: 42ch;
  margin-top: 8px;
  font-size: 1.02rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
}

.about-story__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.about-block {
  min-height: 100%;
  padding: 22px 4px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.about-block__title {
  margin-bottom: 18px;
  font-family: "Futura", "Trebuchet MS", sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.about-block p {
  max-width: 40ch;
  font-size: 0.98rem;
  line-height: 1.92;
  color: rgba(255, 255, 255, 0.9);
}

.about-block p + p {
  margin-top: 12px;
}

.about-quote {
  padding: 42px 0 12px;
}

.about-quote__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: center;
}

.about-quote__text {
  max-width: 960px;
  font-size: clamp(2rem, 4.6vw, 3.7rem);
  line-height: 0.98;
  color: rgba(255, 255, 255, 0.92);
}

.about-quote__image {
  overflow: hidden;
  justify-self: end;
  width: min(100%, 380px);
  background: rgba(255, 255, 255, 0.03);
}

.about-quote__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  max-height: 520px;
  object-fit: cover;
}

.about-story.is-visible .about-block:nth-child(1) {
  transition-delay: 0.08s;
}

.about-story.is-visible .about-block:nth-child(2) {
  transition-delay: 0.16s;
}

.about-story.is-visible .about-block:nth-child(3) {
  transition-delay: 0.24s;
}

.about-gallery {
  padding: 28px 0 72px;
}

.about-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  width: 100%;
}

.about-gallery__empty {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.about-gallery__item {
  width: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.about-gallery__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 260px;
  object-fit: cover;
}

.about-gallery__item img,
.about-gallery__item--portrait img,
.about-gallery__item--landscape img {
  aspect-ratio: 4 / 5;
}

@media (max-width: 1024px) {
  .about-quote__layout {
    grid-template-columns: 1fr;
  }

  .about-quote__image {
    justify-self: start;
    width: min(100%, 420px);
  }

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

  .about-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 68vh;
  }

  .about-hero__content {
    padding-bottom: 40px;
  }

  .about-title {
    max-width: 100%;
    font-size: clamp(2.55rem, 12vw, 4rem);
    line-height: 0.96;
  }

  .about-lead {
    max-width: 100%;
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.82;
  }

  .about-story {
    padding-top: 28px;
    padding-bottom: 8px;
  }

  .about-story__intro,
  .about-gallery__head {
    gap: 8px;
  }

  .about-section-title {
    font-size: clamp(2rem, 10vw, 3.1rem);
    line-height: 0.96;
  }

  .about-story__summary {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .about-story__grid {
    gap: 18px;
    margin-top: 18px;
  }

  .about-block {
    padding-top: 16px;
  }

  .about-block__title {
    margin-bottom: 12px;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
  }

  .about-block p {
    max-width: 100%;
    font-size: 0.94rem;
    line-height: 1.78;
  }

  .about-quote {
    padding-top: 24px;
  }

  .about-quote__layout {
    gap: 18px;
  }

  .about-quote__text {
    font-size: clamp(1.7rem, 9vw, 2.7rem);
    line-height: 1.02;
  }

  .about-quote__image {
    width: min(100%, 300px);
  }

  .about-quote__image img {
    max-height: 400px;
  }

  .about-gallery {
    padding-top: 18px;
    padding-bottom: 52px;
  }

  .about-gallery__grid {
    gap: 10px;
    margin-top: 18px;
  }
}

@media (max-width: 560px) {
  .about-hero__content,
  .about-story,
  .about-gallery,
  .about-quote {
    width: min(calc(100% - 16px), 1720px);
  }

  .about-gallery__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-gallery__item img {
    max-height: 190px;
  }

  .about-block {
    padding: 14px 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-reveal,
  .about-reveal-child,
  .about-hero__media,
  .about-gallery__item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
