.about-page-wrapper {
  color: #1a1a1a;
  background-color: #f1f0ea;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 0;
  display: flex;
}
.about-grid-container {
  border-left: 1px solid #00000026;
  border-right: 1px solid #00000026;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}
.about-section {
  border-bottom: 1px solid #00000026;
}
.hero-title-section {
  text-align: center;
  padding: 60px 20px;
}
.hero-title-section h1 {
  font-family: var(--sans-font), sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin: 0;
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 700;
}
.intro-split-section {
  grid-template-columns: 1fr 1fr;
  display: grid;
}
.intro-left {
  border-right: 1px solid #00000026;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  display: flex;
}
.giant-asterisk {
  color: #1a1a1a;
  width: 50%;
  height: 50%;
  animation: 20s linear infinite slowSpin;
}
@keyframes slowSpin {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.intro-right {
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 40px;
  display: flex;
}
.intro-right h2 {
  font-family: var(--sans-font), sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  text-align: left;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
}
.staggered-text-section {
  grid-template-columns: 1fr 2.5fr 1fr;
  display: grid;
}
.staggered-col {
  flex-direction: column;
  padding: 40px;
  display: flex;
}
.col-left {
  border-right: 1px solid #00000026;
  justify-content: flex-end;
}
.col-center {
  border-right: 1px solid #00000026;
  justify-content: center;
  gap: 24px;
  padding: 60px 80px;
}
.bold-manifesto h3 {
  font-family: var(--sans-font), sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #1a1a1a;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
}
.col-right {
  justify-content: flex-start;
}
.image-box {
  aspect-ratio: 1;
  width: 100%;
  overflow: hidden;
}
.image-box img {
  object-fit: cover;
  filter: grayscale();
  width: 100%;
  height: 100%;
}
.attitude-grid-section {
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}
.attitude-cell {
  border-right: 1px solid #00000026;
  justify-content: flex-start;
  align-items: center;
  padding: 80px 40px;
  display: flex;
}
.attitude-cell:last-child {
  border-right: none;
}
.attitude-cell h3 {
  font-family: var(--sans-font), sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  text-align: left;
  word-break: break-word;
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
}
.personality-split-section {
  grid-template-columns: 2fr 1fr;
  display: grid;
}
.personality-left {
  border-right: 1px solid #00000026;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 80px;
  display: flex;
}
.personality-left h2 {
  font-family: var(--sans-font), sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin: 0;
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1;
}
.personality-right {
  justify-content: center;
  align-items: center;
  min-height: 500px;
  display: flex;
}
.icon-container-alt {
  color: #f1f0ea;
  background-color: #1a1a1a;
}
.giant-exclamation {
  width: 50%;
  height: 50%;
  animation: 2s ease-in-out infinite pulseScale;
}
@keyframes pulseScale {
  0%,
  to {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.bottom-split-section {
  grid-template-columns: 1fr 2.5fr;
  display: grid;
}
.bottom-left {
  border-right: 1px solid #00000026;
}
.bottom-left img {
  object-fit: cover;
  filter: grayscale();
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
}
.bottom-right {
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 60px 80px;
  display: flex;
}
.bottom-right.bold-manifesto h2 {
  font-family: var(--sans-font), sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin: 0 0 24px;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1;
}
@media (width<=1024px) {
  .staggered-col.col-center,
  .bottom-right {
    padding: 40px;
  }
  .attitude-grid-section {
    grid-template-columns: 1fr;
  }
  .attitude-cell {
    border-bottom: 1px solid #00000026;
    border-right: none;
  }
  .attitude-cell:last-child {
    border-bottom: none;
  }
  .personality-split-section {
    grid-template-columns: 1fr;
  }
  .personality-left {
    border-bottom: 1px solid #00000026;
    border-right: none;
    padding: 40px;
  }
}
@media (width<=768px) {
  .about-grid-container {
    border-left: none;
    border-right: none;
  }
  .intro-split-section,
  .staggered-text-section,
  .bottom-split-section {
    grid-template-columns: 1fr;
  }
  .intro-left,
  .col-left,
  .col-center,
  .bottom-left {
    border-bottom: 1px solid #00000026;
    border-right: none;
  }
  .intro-left img,
  .bottom-left img {
    min-height: 300px;
  }
  .staggered-col {
    padding: 20px;
  }
  .hero-title-section {
    padding: 60px 16px 40px;
  }
  .hero-title-section h1 {
    word-break: break-word;
    font-size: clamp(3rem, 12vw, 4rem);
  }
  .intro-right h2,
  .bold-manifesto h3,
  .attitude-cell h3,
  .personality-left h2,
  .bottom-right.bold-manifesto h2 {
    word-break: break-word;
    font-size: clamp(2rem, 10vw, 3.5rem);
  }
  .intro-left,
  .personality-right {
    min-height: 300px;
  }
  .attitude-cell,
  .personality-left,
  .bottom-right,
  .intro-right {
    padding: 40px 20px;
  }
}
