.about-main {
  background: var(--bg);
}

.about-section {
  padding: clamp(56px, 8vw, 104px) 0;
  border-bottom: 1px solid var(--line);
}

.about-section:last-of-type {
  border-bottom: 0;
}

.about-split {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

@media (min-width: 900px) {
  .about-split {
    grid-template-columns: 1fr 1fr;
  }

  .about-split--media-right .about-split__media {
    order: 2;
  }
}

.about-split__media {
  overflow: hidden;
  background: var(--bg-sand);
  aspect-ratio: 4 / 5;
}

.about-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-split__copy .section-lead {
  margin-top: 20px;
}

.about-split__copy p + p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

/* Timeline */
.timeline {
  margin-top: 40px;
  display: grid;
  gap: 0;
}

.timeline__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.timeline__item:last-child {
  border-bottom: 1px solid var(--line);
}

.timeline__year {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--camel-deep);
  letter-spacing: 0.04em;
}

.timeline__body h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.timeline__body p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

/* Honors timeline */
.honor-timeline {
  margin-top: 44px;
  position: relative;
  max-width: 820px;
}

.honor-timeline::before {
  content: "";
  position: absolute;
  left: 58px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--line-strong);
}

@media (min-width: 700px) {
  .honor-timeline::before {
    left: 88px;
  }
}

.honor-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding: 0 0 32px;
}

@media (min-width: 700px) {
  .honor-timeline__item {
    grid-template-columns: 80px 1fr;
    gap: 40px;
    padding-bottom: 36px;
  }
}

.honor-timeline__item:last-child {
  padding-bottom: 0;
}

.honor-timeline__year {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
  color: var(--camel-deep);
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: right;
  padding-top: 2px;
}

.honor-timeline__year::after {
  content: "";
  position: absolute;
  top: 0.55em;
  right: -19px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--camel-deep);
  box-shadow: 0 0 0 4px var(--bg);
}

@media (min-width: 700px) {
  .honor-timeline__year::after {
    right: -25px;
  }
}

.honor-timeline__body {
  padding: 0 0 4px 8px;
}

.honor-timeline__body h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  color: var(--ink);
}

.honor-timeline__body p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.8;
  max-width: 52em;
}

/* Store gallery */
.store-grid {
  margin-top: 36px;
  display: grid;
  gap: 12px;
}

@media (min-width: 700px) {
  .store-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.store-grid figure {
  overflow: hidden;
  background: var(--bg-sand);
  aspect-ratio: 4 / 5;
}

.store-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.store-grid figure:hover img {
  transform: scale(1.04);
}

/* Contact */
.contact-panel {
  margin-top: 36px;
  display: grid;
  gap: 20px;
  padding: 36px clamp(24px, 4vw, 48px);
  background: var(--bg-warm);
  border: 1px solid var(--line);
}

@media (min-width: 800px) {
  .contact-panel {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-panel h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--muted);
}

.contact-panel p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-soft);
}
