/* ── About ── */
.about {
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(122,158,126,.12) 0%, transparent 70%);
  pointer-events: none;
}

.about__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Image column */
.about__image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.about__image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* Decorative border accent */
.about__image-wrap::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  right: 12px; bottom: 12px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-xl);
  opacity: .35;
  z-index: -1;
}

/* Years badge */
.about__badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--burgundy);
  border-radius: 50%;
  width: 104px; height: 104px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--cream-dark);
}
.about__years {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.about__years-label {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-top: 3px;
  text-align: center;
}

/* Text column */
.about__content .section-title { text-align: left; }

.about__text {
  font-size: .975rem;
  color: var(--medium);
  line-height: 1.82;
  margin-bottom: 18px;
}

/* Feature list */
.about__features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  /* Kwiatowa ramka — lewy akcent + delikatna obwódka */
  border: 1px solid rgba(196,163,90,.22);
  border-top: 2px solid rgba(196,163,90,.55);
  position: relative;
  overflow: visible;
}
.about__feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--gold);
}

/* Kwiatek centralnie u góry — "korona" ramki */
.about__feature::before {
  content: '✾';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--cream-dark);  /* tło sekcji — ukrywa linię */
  padding: 0 6px;
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
  animation: flowerShimmer 3.6s ease-in-out infinite;
}
/* Rozkładamy opóźnienia po kolei */
.about__feature:nth-child(1)::before { animation-delay: 0s; }
.about__feature:nth-child(2)::before { animation-delay: 1.2s; }
.about__feature:nth-child(3)::before { animation-delay: 2.4s; }

/* Narożne mini-kwiatki */
.about__feature::after {
  content: '✿';
  position: absolute;
  bottom: 8px; right: 10px;
  font-size: .6rem;
  color: rgba(196,163,90,.35);
  animation: flowerShimmer 4s ease-in-out infinite reverse;
  animation-delay: .6s;
}

.about__feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.about__feature strong {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 3px;
}
.about__feature p {
  font-size: .8rem;
  color: var(--medium);
  line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about__content .section-title { text-align:center; }
  .about__image-wrap { max-width:460px; margin:0 auto; }
}
@media (max-width: 600px) {
  .about__badge {
    width: 84px; height: 84px;
    bottom: -14px; right: -8px;
  }
  .about__years       { font-size:1.6rem; }
  .about__years-label { font-size:.5rem; }
}
