.about-page {
  --about-red: #b11217;
  --about-red-dark: #7a0f12;
  --about-red-soft: #ffeef0;
}

.about-main {
  max-width: 1360px;
  margin: 0 auto;
  padding: calc(var(--site-header-height, 118px) + 24px) 24px 40px;
}

.about-hero-v2 {
  min-height: min(760px, calc(100svh - var(--site-header-height, 118px) - 24px));
  display: flex;
  align-items: center;
}

.about-hero-v2__grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}

.about-hero-v2__content {
  position: relative;
  z-index: 2;
  padding: clamp(8px, 1.2vw, 16px) 0;
}

.about-hero-v2__kicker {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8d3e34;
}

.about-hero-v2__title {
  margin: 0 0 22px;
  font-size: clamp(38px, 5.4vw, 62px);
  line-height: 0.98;
  font-weight: 800;
  color: #2b140c;
  letter-spacing: -0.02em;
}

.about-hero-v2__points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.about-hero-v2__points li {
  position: relative;
  padding-left: 22px;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.62;
  color: #4a342c;
}

.about-hero-v2__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b11217, #7a0f12);
  transform: translateY(-50%);
  box-shadow: 0 0 0 3px rgba(177, 18, 23, 0.12);
}

.about-hero-v2__cta {
  position: relative;
  isolation: isolate;
  z-index: 0;
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 36px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: #7e2625;
  border: 2px solid #c9a05a;
  background: linear-gradient(135deg, #fffefb 0%, #f7eee1 45%, #f0dfc8 100%);
  box-shadow:
    0 0 0 1px rgba(212, 165, 116, 0.35),
    0 10px 26px rgba(88, 27, 22, 0.2);
  overflow: hidden;
  transition:
    transform 0.32s var(--ease-spring, cubic-bezier(0.34, 1.45, 0.64, 1)),
    box-shadow 0.38s ease,
    color 0.32s ease;
}

/* Заливка красным при наведении (btn-fill-gold) */
.about-hero-v2__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: inherit;
  z-index: -1;
  background: linear-gradient(135deg, #7e2625, #9f3b32);
  transform: scale(0);
  transform-origin: center center;
  transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-hero-v2__cta:hover::before {
  transform: scale(1);
}

.about-hero-v2__cta-shine {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  z-index: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.72) 45%, transparent 55%);
  transform: translateX(-120%);
  animation: aboutHeroCtaShine 3.2s ease-in-out infinite;
  pointer-events: none;
}

.about-hero-v2__cta:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 0 2px rgba(255, 248, 220, 0.7),
    0 14px 30px rgba(126, 38, 37, 0.35);
}

.about-hero-v2__cta:hover .about-hero-v2__cta-shine {
  animation-duration: 1.1s;
}

.about-hero-v2__media {
  position: relative;
  min-height: clamp(360px, 42vw, 560px);
  margin-right: clamp(-12px, -1.5vw, 0);
  overflow: hidden;
}

.about-hero-v2__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  -webkit-mask-image: none;
  mask-image: none;
  filter: none;
}

.about-hero-v2__media::before,
.about-hero-v2__media::after {
  content: none;
  display: none;
}

@keyframes aboutHeroCtaShine {
  0%,
  72% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

.about-stats {
  margin-top: clamp(28px, 4vw, 44px);
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 18px);
}

.about-stat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: clamp(22px, 2.2vw, 30px) clamp(18px, 2vw, 26px);
  border-radius: 14px;
  border: 1px solid rgba(212, 165, 116, 0.42);
  background: linear-gradient(180deg, #fffefb 0%, #fff9f3 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 10px 24px rgba(43, 20, 12, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.about-stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(177, 18, 23, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 16px 32px rgba(43, 20, 12, 0.1);
}

.about-stat-card__value {
  display: block;
  margin: 0 0 10px;
  font-size: clamp(42px, 4.2vw, 56px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #2b140c;
}

.about-stat-card__label {
  margin: 0 0 14px;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.35;
  font-weight: 800;
  color: #571316;
}

.about-stat-card__text {
  margin: 0;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.55;
  font-weight: 500;
  color: #6b534c;
}

.about-section {
  margin-top: clamp(28px, 3.5vw, 40px);
}

.about-section--advantages {
  padding: clamp(8px, 1.5vw, 16px) 0;
}

.about-advantages {
  margin-top: clamp(20px, 2.5vw, 28px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.8vw, 36px);
}

.about-advantage {
  display: flex;
  align-items: flex-start;
  gap: clamp(14px, 1.6vw, 18px);
}

.about-advantage__icon {
  flex-shrink: 0;
  width: clamp(52px, 4.8vw, 60px);
  height: clamp(52px, 4.8vw, 60px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: clamp(20px, 1.8vw, 24px);
  color: #571316;
  background: linear-gradient(145deg, #f7eee1 0%, #efe0cf 100%);
  border: 1px solid rgba(212, 165, 116, 0.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 6px 16px rgba(43, 20, 12, 0.06);
}

.about-advantage__content h4 {
  margin: 2px 0 10px;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.3;
  font-weight: 800;
  color: #2b140c;
}

.about-advantage__content p {
  margin: 0;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.58;
  font-weight: 500;
  color: #6b534c;
}

.about-story {
  margin-top: clamp(32px, 4vw, 48px);
}

.about-story__banner {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(212, 165, 116, 0.38);
  box-shadow: 0 14px 36px rgba(43, 20, 12, 0.1);
}

.about-story__banner-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(252, 251, 248, 0.94) 0%, rgba(252, 251, 248, 0.82) 42%, rgba(252, 251, 248, 0.55) 100%),
    url("/images/stock/gifts-snow.jpg") center/cover;
  pointer-events: none;
}

.about-story__banner-inner {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 3vw, 34px);
}

.about-story__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(18px, 2.4vw, 28px);
  align-items: start;
}

.about-story__copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-story__title {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.15;
  font-weight: 800;
  color: #2b140c;
  letter-spacing: -0.02em;
  max-width: 16em;
}

.about-story__subtitle {
  margin: 0;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.55;
  color: #5d4f4b;
  max-width: 52ch;
}

.about-story__card {
  margin: 4px 0 0;
  padding: clamp(18px, 2vw, 24px);
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 14px 32px rgba(43, 20, 12, 0.1);
}

.about-story__card p {
  margin: 0;
  font-size: clamp(14px, 1.02vw, 16px);
  line-height: 1.62;
  color: #4a342c;
}

.about-story__visual {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}

.about-story__visual-frame {
  position: relative;
  width: 100%;
  min-height: clamp(200px, 22vw, 268px);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(43, 20, 12, 0.14);
}

.about-story__visual-img {
  object-fit: cover;
  object-position: center;
}

.about-story__catalog-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #b11217 0%, #8f1a1a 100%);
  box-shadow: 0 10px 24px rgba(126, 38, 37, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.about-story__catalog-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 14px 30px rgba(126, 38, 37, 0.34);
}

.about-story__foot {
  margin-top: clamp(18px, 2.2vw, 24px);
  padding-top: clamp(16px, 2vw, 20px);
  border-top: 1px solid rgba(212, 165, 116, 0.35);
  columns: 2;
  column-gap: clamp(24px, 3vw, 36px);
}

.about-story__foot p {
  margin: 0 0 12px;
  font-size: clamp(14px, 1vw, 15px);
  line-height: 1.62;
  color: #4a342c;
  break-inside: avoid;
}

.about-story > .about-callout {
  margin-top: clamp(18px, 2.5vw, 26px);
}

.about-callout {
  display: flex;
  align-items: flex-start;
  gap: clamp(14px, 1.6vw, 18px);
  padding: clamp(18px, 2vw, 22px) clamp(18px, 2.2vw, 24px);
  border-radius: 14px;
  border: 1px solid rgba(239, 184, 186, 0.85);
  background: linear-gradient(180deg, #fff8f5 0%, #fff2f0 100%);
  box-shadow: 0 4px 14px rgba(177, 18, 23, 0.05);
}

.about-callout__icon {
  flex-shrink: 0;
  width: 28px;
  margin-top: 2px;
  text-align: center;
  font-size: 20px;
  line-height: 1;
  color: #b11217;
}

.about-callout__text {
  margin: 0;
  font-size: clamp(14px, 1vw, 15px);
  line-height: 1.62;
  color: #4a342c;
}

.about-page-sections {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px 8px;
}

.section-about-blog__lead {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: #6b534c;
  font-weight: 500;
}

.about-blog-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 20px);
}

.about-blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(212, 165, 116, 0.42);
  background: linear-gradient(180deg, #fffefb 0%, #fff9f3 100%);
  box-shadow: 0 10px 24px rgba(43, 20, 12, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.about-blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(43, 20, 12, 0.1);
}

.about-blog-card__media {
  position: relative;
  height: clamp(160px, 16vw, 200px);
  background: #f3e4d7;
}

.about-blog-card__img {
  object-fit: cover;
}

.about-blog-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(16px, 1.6vw, 20px);
  flex: 1;
}

.about-blog-card__title {
  margin: 0;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.35;
  font-weight: 800;
  color: #2b140c;
}

.about-blog-card__excerpt {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
  color: #8d3e34;
}

.about-blog-card__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.58;
  color: #5d4f4b;
}

.about-blog-more-wrap {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.about-blog-more {
  min-width: min(100%, 220px);
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  border: 2px solid rgba(126, 38, 37, 0.32);
  color: #7e2625;
  background: linear-gradient(135deg, #fffefb 0%, #f7eee1 45%, #f0dfc8 100%);
}

@media (max-width: 1180px) {
  .about-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .about-advantages {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-story__layout {
    grid-template-columns: 1fr;
  }
  .about-story__visual {
    order: -1;
  }
  .about-story__foot {
    columns: 1;
  }
  .about-story__title {
    max-width: none;
  }
  .about-hero-v2 {
    min-height: auto;
  }
  .about-hero-v2__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-hero-v2__media {
    order: -1;
    min-height: clamp(260px, 58vw, 360px);
    margin-right: 0;
  }
  .about-hero-v2__image {
    object-fit: contain;
    object-position: center;
  }
  .about-hero-v2__cta {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 840px) {
  .about-main {
    padding-top: calc(var(--site-header-height, 114px) + 16px);
  }
  .about-stats__grid,
  .about-blog-grid {
    grid-template-columns: 1fr;
  }
}
