.about-carousel {
  position: relative;
  min-height: clamp(560px, 50vw, 780px);
  overflow: hidden;
  background: var(--olive);
  color: var(--cream);
  isolation: isolate;
}

.about-carousel:focus { outline: none; }
.about-carousel:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: -2px;
}

.about-slides {
  position: absolute;
  inset: 0;
}

.about-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(96px, 9vw, 156px) clamp(88px, 14vw, 270px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(24px);
  transition: opacity 420ms ease, transform 420ms ease, visibility 0s linear 420ms;
}

.about-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition-delay: 0s;
}

.about-slide--purpose { background: var(--olive); color: var(--cream); }
.about-slide--path { background: var(--brown); color: var(--paper); }
.about-slide--products { background: var(--ink); color: var(--paper); }

.about-shape {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  width: min(88vw, 1180px);
  height: min(96%, 760px);
  overflow: visible;
  fill: none;
  stroke: rgba(255, 248, 204, .27);
  stroke-width: 4;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.about-shape path { vector-effect: non-scaling-stroke; }

.about-slide--path .about-shape {
  width: min(92vw, 1240px);
  height: min(104%, 820px);
  stroke: rgba(255, 255, 253, .25);
  transform: translate(-50%, -51%);
}

.about-slide--products .about-shape {
  width: min(104vw, 1400px);
  height: min(112%, 880px);
  stroke: rgba(255, 248, 204, .28);
  transform: translate(-50%, -56%);
}

.about-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  text-align: center;
}

.about-copy small {
  display: block;
  margin-bottom: clamp(16px, 1.5vw, 28px);
}

.about-copy h2 {
  margin: 0 0 clamp(28px, 3vw, 52px);
  color: inherit;
  font: 400 clamp(54px, 5.2vw, 104px)/.95 Italiana, Georgia, serif;
  letter-spacing: -.045em;
}

.about-copy p,
.about-copy li {
  color: inherit;
  font: 400 clamp(18px, 1.55vw, 30px)/1.55 Raleway, Arial, sans-serif;
}

.about-copy p { margin: 0 auto; max-width: 42em; }

.about-copy ul {
  max-width: 42em;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
  text-align: left;
}

.about-copy li {
  position: relative;
  padding-left: 28px;
}

.about-copy li::before {
  content: "—";
  position: absolute;
  left: 0;
}

.about-control {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 52px;
  height: 52px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 253, .42);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
  transform: translateY(-50%);
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.about-control:hover {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--ink);
}

.about-control:focus-visible,
.about-dot:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 4px;
}

.about-control svg {
  width: 14px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-control--previous { left: clamp(20px, 3vw, 56px); }
.about-control--next { right: clamp(20px, 3vw, 56px); }

.about-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: clamp(28px, 3vw, 48px);
  display: flex;
  gap: 13px;
  transform: translateX(-50%);
}

.about-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid rgba(255, 255, 253, .48);
  border-radius: 50%;
  background: transparent;
}

.about-dot[aria-current="true"] {
  border-color: var(--cream);
  background: var(--cream);
}

@media (max-width: 700px) {
  .about-carousel { min-height: 670px; }
  .about-slide { padding: 92px 54px 110px; }
  .about-shape {
    width: 150vw;
    height: 88%;
  }
  .about-slide--path .about-shape { width: 155vw; height: 94%; }
  .about-slide--products .about-shape {
    width: 175vw;
    height: 100%;
    transform: translate(-50%, -58%);
  }
  .about-copy { text-align: left; }
  .about-copy h2 {
    margin-bottom: 28px;
    font-size: clamp(48px, 14vw, 66px);
  }
  .about-copy p,
  .about-copy li { font-size: 17px; line-height: 1.55; }
  .about-copy ul { gap: 14px; }
  .about-control {
    width: 40px;
    height: 40px;
    border-color: transparent;
  }
  .about-control--previous { left: 7px; }
  .about-control--next { right: 7px; }
  .about-dots { bottom: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  .about-slide,
  .about-control { transition: none; }
}
