.about-hero {
  position: relative;
  min-height: calc(100svh - 128px);
  padding: 64px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(246, 163, 91, 0.14),
      transparent 32%
    ),
    radial-gradient(circle at 88% 18%, rgba(201, 67, 46, 0.1), transparent 34%),
    linear-gradient(115deg, #fffaf3 0%, #fff6ea 48%, #fff1df 100%);
}

.about-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  min-height: calc(100svh - 250px);
}

.about-hero__content {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.about-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.about-hero__label img {
  width: 18px;
  height: 18px;
}

.about-hero__title {
  font-family: var(--font-title);
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.055em;
  color: var(--color-text);
}

.about-hero__title span {
  color: var(--color-primary);
}

.about-hero__text {
  max-width: 560px;
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.72;
  font-weight: 500;
  color: var(--color-muted);
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.about-hero__visual {
  position: absolute;
  top: 0;
  right: max(-110px, calc((100vw - var(--container)) / -2));
  bottom: 0;
  z-index: 1;
  width: min(66vw, 940px);
  overflow: hidden;
  border-top-left-radius: 52% 100%;
  border-bottom-left-radius: 52% 100%;
  background: var(--color-bg-soft);
  box-shadow: -24px 20px 76px rgba(92, 43, 26, 0.13);
}

.about-hero__visual::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 38%;
  background: linear-gradient(
    90deg,
    #fffaf3 0%,
    rgba(255, 250, 243, 0.84) 42%,
    rgba(255, 250, 243, 0) 100%
  );
  pointer-events: none;
}

.about-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: calc(100svh - 128px);
  object-fit: cover;
  object-position: center;
}

.about-story {
  padding: 84px 0;
  background: linear-gradient(180deg, #fff8ee 0%, #fffaf5 100%);
}

.about-story__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.48fr;
  gap: 42px;
  align-items: center;
  padding: 48px 56px;
  border: 1px solid rgba(90, 51, 40, 0.08);
  border-radius: 38px;
  background:
    radial-gradient(circle at 4% 0%, rgba(246, 163, 91, 0.15), transparent 34%),
    rgba(255, 250, 243, 0.8);
  box-shadow: 0 24px 70px rgba(92, 43, 26, 0.08);
  overflow: hidden;
}

.about-story__decor {
  position: absolute;
  right: 34px;
  top: 28px;
  width: 132px;
  opacity: 0.42;
  transform: rotate(14deg);
}

.about-story__content {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.about-story__title {
  font-family: var(--font-title);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--color-text);
}

.about-story__content p {
  max-width: 760px;
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.72;
  font-weight: 500;
  color: var(--color-muted);
}

.about-story__quote {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  padding: 30px;
  border-radius: 30px;
  color: #fff8ee;
  background: var(--gradient-dark);
  box-shadow: 0 20px 54px rgba(92, 43, 26, 0.16);
}

.about-story__quote strong {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
}

.about-story__quote p {
  font-size: 15px;
  line-height: 1.65;
  font-weight: 600;
  color: rgba(255, 248, 238, 0.82);
}

.about-pillars {
  padding: 82px 0 90px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(246, 163, 91, 0.11),
      transparent 32%
    ),
    linear-gradient(180deg, #fffaf5 0%, #fff3e6 100%);
}

.about-pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.about-pillar-card {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(90, 51, 40, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 50px rgba(92, 43, 26, 0.08);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.about-pillar-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 67, 46, 0.18);
  box-shadow: 0 24px 62px rgba(92, 43, 26, 0.13);
}

.about-pillar-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
}

.about-pillar-card__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.about-pillar-card h3 {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.about-pillar-card p {
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
  color: var(--color-muted);
}

.about-kitchen {
  padding: 88px 0;
  background: linear-gradient(180deg, #fff3e6 0%, #fffaf5 100%);
}

.about-kitchen__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.about-kitchen__media {
  overflow: hidden;
  border-radius: 42px;
  background: var(--color-bg-soft);
  box-shadow: 0 24px 70px rgba(92, 43, 26, 0.12);
}

.about-kitchen__media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.about-kitchen__content {
  max-width: 620px;
}

.about-kitchen__title {
  font-family: var(--font-title);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--color-text);
}

.about-kitchen__content p {
  margin-top: 22px;
  font-size: 16px;
  line-height: 1.72;
  font-weight: 500;
  color: var(--color-muted);
}

.about-kitchen__list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  color: var(--color-muted);
}

.about-kitchen__list li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
}

.about-kitchen__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-primary);
}

.about-kitchen__content .link {
  margin-top: 28px;
}

.about-halls {
  padding: 86px 0 94px;
  background:
    radial-gradient(
      circle at 8% 14%,
      rgba(246, 163, 91, 0.12),
      transparent 34%
    ),
    linear-gradient(180deg, #fffaf5 0%, #fff8ee 100%);
}

.about-halls__head {
  max-width: 760px;
  margin-bottom: 42px;
}

.about-halls__title {
  font-family: var(--font-title);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--color-text);
}

.about-halls__head p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.72;
  font-weight: 500;
  color: var(--color-muted);
}

.about-halls__list {
  display: grid;
  gap: 18px;
}

.about-hall-row {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 28px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(90, 51, 40, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 16px 46px rgba(92, 43, 26, 0.07);
}

.about-hall-row__image {
  overflow: hidden;
  border-radius: 22px;
  background: var(--color-bg-soft);
}

.about-hall-row__image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.about-hall-row__content {
  display: grid;
  gap: 10px;
  padding-right: 18px;
}

.about-hall-row__content span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 900;
  color: #fff8ee;
  background: var(--gradient-main);
}

.about-hall-row__content h3 {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--color-text);
}

.about-hall-row__content p {
  max-width: 720px;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
  color: var(--color-muted);
}

.about-events {
  padding: 86px 0;
  background: linear-gradient(180deg, #fff8ee 0%, #fff3e6 100%);
}

.about-events__card {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 40px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(90, 51, 40, 0.08);
  border-radius: 38px;
  background:
    radial-gradient(circle at 0% 0%, rgba(246, 163, 91, 0.13), transparent 34%),
    rgba(255, 250, 243, 0.82);
  box-shadow: 0 24px 70px rgba(92, 43, 26, 0.09);
}

.about-events__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px;
}

.about-events__title {
  font-family: var(--font-title);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--color-text);
}

.about-events__content p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.72;
  font-weight: 500;
  color: var(--color-muted);
}

.about-events__types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.about-events__types span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid rgba(216, 176, 106, 0.28);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 800;
  color: #a77b3f;
  background: rgba(255, 250, 243, 0.76);
}

.about-events__content .btn {
  width: fit-content;
  margin-top: 30px;
}

.about-events__image {
  min-height: 520px;
  overflow: hidden;
}

.about-events__image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.about-cta {
  padding: 86px 0 96px;
  background:
    radial-gradient(circle at 90% 0%, rgba(201, 67, 46, 0.12), transparent 34%),
    linear-gradient(180deg, #fff3e6 0%, #fff8ee 100%);
}

.about-cta__card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(90, 51, 40, 0.08);
  border-radius: 36px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(201, 67, 46, 0.12),
      transparent 34%
    ),
    rgba(255, 250, 243, 0.82);
  box-shadow: 0 24px 70px rgba(92, 43, 26, 0.09);
}

.about-cta__title {
  max-width: 720px;
  font-family: var(--font-title);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--color-text);
}

.about-cta__card p {
  max-width: 720px;
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.72;
  font-weight: 500;
  color: var(--color-muted);
}

.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

@media (max-width: 1180px) {
  .about-hero__visual {
    right: -150px;
  }

  .about-pillars__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-cta__card {
    grid-template-columns: 1fr;
  }

  .about-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 1024px) {
  .about-hero {
    min-height: auto;
    padding: 48px 0 0;
  }

  .about-hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-hero__content {
    max-width: 760px;
    padding-bottom: 36px;
  }

  .about-hero__visual {
    position: relative;
    right: auto;
    width: calc(100% + 40px);
    height: 430px;
    margin: 0 -20px;
    border-top-left-radius: 42% 24%;
    border-top-right-radius: 42% 24%;
    border-bottom-left-radius: 0;
  }

  .about-hero__visual::before {
    inset: 0;
    width: 100%;
    background: linear-gradient(
      180deg,
      rgba(255, 250, 243, 0.5) 0%,
      rgba(255, 250, 243, 0.1) 34%,
      transparent 72%
    );
  }

  .about-hero__visual img {
    min-height: 430px;
  }

  .about-story__card,
  .about-kitchen__grid,
  .about-events__card {
    grid-template-columns: 1fr;
  }

  .about-kitchen__media img {
    height: 430px;
  }

  .about-events__image {
    min-height: 420px;
  }

  .about-events__image img {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .about-hero__title {
    font-size: clamp(38px, 11vw, 56px);
  }

  .about-hero__text {
    font-size: 15px;
  }

  .about-hero__actions .btn {
    width: 100%;
  }

  .about-story,
  .about-pillars,
  .about-kitchen,
  .about-halls,
  .about-events,
  .about-cta {
    padding: 58px 0 64px;
  }

  .about-story__card,
  .about-cta__card {
    padding: 28px 22px;
    border-radius: 28px;
  }

  .about-story__quote {
    padding: 22px;
    border-radius: 22px;
  }

  .about-pillars__grid {
    grid-template-columns: 1fr;
  }

  .about-pillar-card {
    padding: 24px;
    border-radius: 24px;
  }

  .about-kitchen__media {
    border-radius: 28px;
  }

  .about-kitchen__media img {
    height: 360px;
  }

  .about-hall-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 16px;
    border-radius: 26px;
  }

  .about-hall-row__image img {
    height: 220px;
  }

  .about-hall-row__content {
    padding-right: 0;
  }

  .about-events__content {
    padding: 28px 22px;
  }

  .about-events__content .btn {
    width: 100%;
  }

  .about-events__image {
    min-height: 340px;
  }

  .about-events__image img {
    min-height: 340px;
  }

  .about-cta__actions {
    display: grid;
  }

  .about-cta__actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .about-hero__visual {
    width: calc(100% + 24px);
    height: 340px;
    margin-inline: -12px;
  }

  .about-hero__visual img {
    min-height: 340px;
  }

  .about-story__card,
  .about-cta__card {
    padding: 24px 16px;
  }

  .about-kitchen__media img {
    height: 310px;
  }

  .about-hall-row__image img {
    height: 200px;
  }

  .about-events__content {
    padding: 24px 16px;
  }
}
