.about {
  padding: clamp(24px, 5vw, 56px) 0 clamp(32px, 6vw, 80px);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.about__content {
  max-width: 560px;
}

.about__title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0;
  color: #33261c;
  margin-bottom: clamp(16px, 3vw, 28px);
}

.about__lead {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 34.8px;
  letter-spacing: 0;
  color: #33261c;
  margin-bottom: clamp(12px, 2.5vw, 20px);
}

.about__text {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  line-height: 25.5px;
  letter-spacing: 0;
  color: #8a7d70;
  margin-bottom: clamp(24px, 4vw, 40px);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 3vw, 32px);
}

.about__stat-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0;
  color: #e01b22;
  margin-bottom: 8px;
}

.about__stat-label {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0;
  color: #8a7d70;
}

.about__visual {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: clamp(10px, 2vw, 16px);
  width: 100%;
}

.about__photo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  border-radius: 24px;
}

.about__photo--left {
  width: 272px;
  max-width: 47%;
  margin-top: 48px;
  flex-shrink: 1;
}

.about__photo--right {
  width: 304px;
  max-width: 47%;
  flex-shrink: 1;
}

/* ── Laptop (1024–1279) ── */
@media (max-width: 1279px) {
  .about__inner {
    gap: 40px;
  }

  .about__photo--left {
    margin-top: 36px;
  }
}

/* ── Tablet (768–1023) ── */
@media (max-width: 1023px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about__content {
    max-width: none;
  }

  .about__title {
    font-size: 36px;
  }

  .about__lead {
    font-size: 22px;
    line-height: 32px;
  }

  .about__visual {
    justify-content: center;
    max-width: 576px;
    margin: 0 auto;
  }

  .about__photo--left {
    margin-top: 40px;
    max-width: 46%;
  }

  .about__photo--right {
    max-width: 46%;
  }
}

/* ── Mobile (576–767) ── */
@media (max-width: 767px) {
  .about {
    padding: 24px 0 40px;
  }

  .about__inner {
    gap: 28px;
  }

  .about__title {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .about__lead {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 12px;
  }

  .about__text {
    font-size: 14px;
    line-height: 23px;
    margin-bottom: 24px;
  }

  .about__stat-value {
    font-size: 30px;
  }

  .about__stat-label {
    font-size: 12.5px;
  }

  .about__stats {
    gap: 16px;
  }

  .about__visual {
    max-width: 100%;
    gap: 12px;
  }

  .about__photo--left {
    margin-top: 28px;
    max-width: 48%;
  }

  .about__photo--right {
    max-width: 48%;
  }

  .about__photo {
    border-radius: 20px;
  }
}

/* ── Small mobile (400–575) ── */
@media (max-width: 575px) {
  .about__title {
    font-size: 28px;
  }

  .about__lead {
    font-size: 18px;
    line-height: 26px;
  }

  .about__stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about__stat {
    display: flex;
    align-items: baseline;
    gap: 12px;
  }

  .about__stat-value {
    font-size: 28px;
    margin-bottom: 0;
    min-width: 64px;
    flex-shrink: 0;
  }

  .about__visual {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .about__photo--left,
  .about__photo--right {
    width: 100%;
    max-width: 320px;
    margin-top: 0;
  }

  .about__photo {
    border-radius: 16px;
  }
}

/* ── Extra small (<400) ── */
@media (max-width: 399px) {
  .about {
    padding: 20px 0 32px;
  }

  .about__title {
    font-size: 26px;
  }

  .about__lead {
    font-size: 17px;
    line-height: 24px;
  }

  .about__text {
    font-size: 13.5px;
    line-height: 22px;
  }

  .about__stat-value {
    font-size: 26px;
    min-width: 56px;
  }

  .about__stat-label {
    font-size: 12px;
  }

  .about__photo--left,
  .about__photo--right {
    max-width: 100%;
  }
}
