.about-header {
  padding: 10px 0 20px;
}

.about-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  color: var(--accent-deep);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(255 249 244 / 0.74);
  box-shadow: none;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  padding: 0;
}

.about-text--wide {
  margin-top: 28px;
  margin-bottom: 40px;
}

.about-layout + .story-card {
  margin-top: 28px;
  margin-bottom: 40px;
}

.about-text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgb(255 255 255 / 0.68);
  border-radius: 34px;
  background: var(--paper);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.about-text h1 {
  margin: 0 0 20px;
  color: var(--accent-deep);
  font-family: var(--font-body);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  line-height: 1.2;
}

.about-text p {
  margin: 0 0 16px;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.75;
}

.about-text ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.about-text li {
  position: relative;
  margin-top: 10px;
  padding-left: 26px;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.7;
}

.about-text li::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: linear-gradient(135deg, var(--sand), var(--accent));
  box-shadow: none;
}

.about-closing {
  margin-top: 28px;
  color: var(--accent-deep);
  font-family: var(--font-body);
  font-size: clamp(22px, 2.8vw, 30px) !important;
  font-weight: 700;
  font-style: italic;
  text-align: center;
}

.about-photo-wrap {
  position: sticky;
  top: 28px;
}

.about-photo-card {
  height: 100%;
  padding: 14px;
  border: 1px solid rgb(255 255 255 / 0.78);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgb(255 252 249 / 0.86), rgb(250 239 231 / 0.76));
  box-shadow: none;
}

.about-photo {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
}

@media (max-width: 820px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-photo-wrap {
    position: static;
    order: -1;
    max-width: 340px;
    margin: 0 auto;
  }

  .about-text {
    border-radius: 24px;
  }

  .about-photo-card {
    border-radius: 24px;
  }

  .about-photo {
    border-radius: 18px;
  }
}
