.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.about-intro {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  background: var(--charcoal);
}

.about-intro > .scene-artwork {
  display: none;
}

.about-panel {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  --parallax-offset: 0px;
}

.about-panel + .about-panel {
  border-left: 1px solid rgba(246, 240, 226, 0.18);
}

.about-panel img,
.about-values-image {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-offset), 0) scale(1.045);
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1), filter 600ms ease;
  will-change: transform;
}

.about-history img {
  object-position: center 30%;
}

.about-present img {
  object-position: 56% center;
}

.about-panel-shade,
.about-values-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.about-panel-shade {
  background:
    linear-gradient(180deg, rgba(61, 59, 58, 0.2) 0%, rgba(61, 59, 58, 0.08) 38%, rgba(61, 59, 58, 0.92) 100%),
    linear-gradient(90deg, rgba(52, 58, 77, 0.18), transparent 45%);
}

.about-panel-copy {
  position: absolute;
  right: clamp(36px, 5vw, 84px);
  bottom: clamp(112px, 15vh, 160px);
  left: clamp(36px, 5vw, 84px);
  z-index: 3;
  max-width: 520px;
  color: var(--mist);
}

.about-eyebrow {
  width: fit-content;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cream);
  color: var(--white);
  font-size: clamp(0.8rem, 1vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  line-height: 1.4;
  text-transform: uppercase;
}

.about-panel-copy > p:not(.about-eyebrow) {
  max-width: 480px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.7rem, 0.72vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
}

.about-statement {
  position: absolute;
  right: 120px;
  bottom: 38px;
  left: 120px;
  z-index: 4;
  margin: 0;
  color: var(--white);
  font-size: clamp(0.75rem, 1.05vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

.about-scroll {
  bottom: 10px;
  opacity: 0;
}

.about-values {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--charcoal);
  --parallax-offset: 0px;
}

.about-values-shade {
  background:
    linear-gradient(90deg, rgba(20, 20, 20, 0.94) 0%, rgba(24, 24, 24, 0.82) 29%, rgba(61, 59, 58, 0.26) 60%, rgba(61, 59, 58, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 32%, rgba(0, 0, 0, 0.28));
}

.values-list {
  position: relative;
  z-index: 3;
  width: min(560px, 44vw);
  margin: calc(var(--header-height) * 0.65) 0 0 clamp(34px, 6vw, 96px);
  padding: 0;
  list-style: none;
}

.values-list li {
  min-height: 74px;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 18px;
  margin-inline: -14px;
  padding-inline: 14px;
  border-bottom: 1px solid rgba(240, 240, 240, 0.18);
  border-radius: 10px;
  outline: none;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.values-list li:last-child {
  border-bottom: 0;
}

.values-list .material-symbols-outlined {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246, 240, 226, 0.72);
  border-radius: 50%;
  color: var(--cream);
  font-size: 22px;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.values-list p {
  margin: 0;
}

.values-list strong,
.values-list small {
  display: block;
  text-transform: uppercase;
}

.values-list strong {
  color: var(--white);
  font-size: clamp(0.72rem, 0.85vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
}

.values-list small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.56rem, 0.62vw, 0.68rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.45;
}

.values-list strong,
.values-list small {
  transition: color 220ms ease, transform 220ms ease;
}

.values-list li:hover,
.values-list li:focus-visible {
  border-color: rgba(246, 240, 226, 0.56);
  background: linear-gradient(90deg, rgba(246, 240, 226, 0.14), rgba(52, 58, 77, 0.2));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transform: translateX(10px);
}

.values-list li:hover .material-symbols-outlined,
.values-list li:focus-visible .material-symbols-outlined {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--slate);
  box-shadow: 0 0 0 5px rgba(246, 240, 226, 0.1);
  transform: scale(1.08);
}

.values-list li:hover strong,
.values-list li:focus-visible strong {
  color: var(--cream);
  transform: translateX(3px);
}

.values-list li:hover small,
.values-list li:focus-visible small {
  color: var(--white);
  transform: translateX(3px);
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .about-panel:hover img,
  .about-values:hover .about-values-image {
    transform: translate3d(0, var(--parallax-offset), 0) scale(1.075);
    filter: saturate(1.05);
  }

  .uses-scene-artwork .about-intro:has(.about-panel:hover),
  .uses-scene-artwork .about-values:hover {
    --artwork-scale: 1.035;
  }
}

@media (max-width: 800px) {
  .about-intro {
    display: block;
    min-height: 100svh;
  }

  .about-panel {
    min-height: 50svh;
    height: 50svh;
  }

  .about-panel + .about-panel {
    border-top: 1px solid rgba(246, 240, 226, 0.18);
    border-left: 0;
  }

  .about-history img {
    object-position: 50% 24%;
  }

  .about-present img {
    object-position: 58% center;
  }

  .about-panel-copy {
    right: 24px;
    bottom: 22px;
    left: 24px;
    max-width: 340px;
  }

  .about-eyebrow {
    margin-bottom: 14px;
    padding-bottom: 9px;
    font-size: 0.62rem;
    letter-spacing: 0.24em;
  }

  .about-panel-copy > p:not(.about-eyebrow) {
    margin-bottom: 8px;
    font-size: 0.55rem;
    letter-spacing: 0.055em;
    line-height: 1.55;
  }

  .about-statement {
    right: 50px;
    bottom: 14px;
    left: 50px;
    font-size: 0.52rem;
    letter-spacing: 0.22em;
  }

  .about-present .about-panel-copy {
    bottom: 68px;
  }

  .about-scroll {
    bottom: 25px;
    opacity: 1;
  }

  .about-values {
    min-height: 100svh;
    align-items: flex-start;
  }

  .about-values-image {
    object-position: 58% center;
  }

  .about-values-shade {
    background: linear-gradient(90deg, rgba(20, 20, 20, 0.94) 0%, rgba(24, 24, 24, 0.79) 72%, rgba(24, 24, 24, 0.45) 100%);
  }

  .values-list {
    width: calc(100% - 40px);
    margin: 104px 20px 32px;
  }

  .values-list li {
    min-height: 76px;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    margin-inline: -8px;
    padding-inline: 8px;
  }

  .values-list li:hover,
  .values-list li:focus-visible {
    transform: translateX(4px);
  }

  .values-list .material-symbols-outlined {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .values-list strong {
    font-size: 0.69rem;
  }

  .values-list small {
    font-size: 0.56rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-panel img,
  .about-values-image {
    transform: none !important;
  }
}

.about-intro .scene-artwork img {
  object-position: center center;
}

.about-eyebrow {
  font-size: clamp(0.9rem, 1.15vw, 1.12rem);
}

.about-panel-copy > p:not(.about-eyebrow) {
  font-size: clamp(0.86rem, 1vw, 1.02rem);
  line-height: 1.75;
}

.about-signature {
  margin-top: 18px !important;
  color: var(--cream) !important;
  font-size: clamp(0.72rem, 0.78vw, 0.84rem) !important;
  font-weight: 600;
}

@media (max-width: 800px) {
  .about-panel-copy > p:not(.about-eyebrow) {
    font-size: 0.68rem;
    line-height: 1.6;
  }
}
