.about-clean-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-img-col {
  position: relative;
}

.about-img-col::before {
  content: '';
  position: absolute;
  inset: -14px -14px 14px 14px;
  background: linear-gradient(135deg, rgba(127, 217, 188, 0.28), rgba(184, 157, 101, 0.2));
  border-radius: 28px;
  z-index: 0;
}

.about-img-col img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: none;
  display: block;
}

.about-text-col {
  padding: 8px 0;
}

.about-story-title {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  color: #062B25;
  margin-bottom: 18px;
  font-weight: 700;
}

.about-text-col p {
  color: #4a6058;
  line-height: 1.72;
  font-size: 1rem;
  margin-bottom: 14px;
}

/* ── Values section ── */
.section-values-about {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 28%, rgba(77, 123, 116, 0.12), transparent 34%),
    radial-gradient(circle at 84% 78%, rgba(184, 157, 101, 0.08), transparent 28%),
    linear-gradient(180deg, #F4FAF7 0%, #EAF3EF 100%);
}

.section-values-about::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  left: -230px;
  top: -90px;
  border-radius: 999px;
  background: radial-gradient(circle at 60% 52%, rgba(127,217,188,0.18), rgba(127,217,188,0.02) 70%, transparent 78%);
  pointer-events: none;
}

.section-values-about .container {
  position: relative;
  z-index: 1;
}

.section-values-about .section-header {
  margin-bottom: 44px;
}

/* ── Blob grid ── */
.value-blobs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

.value-blob {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 36px 44px;
  overflow: hidden;
  transition: transform 0.28s ease;
}

.value-blob:hover { transform: translateY(-5px); }

.value-blob:nth-child(1) {
  border-radius: 62% 38% 52% 48% / 56% 48% 52% 44%;
}
.value-blob:nth-child(2) {
  border-radius: 44% 56% 38% 62% / 50% 62% 38% 50%;
}
.value-blob:nth-child(3) {
  border-radius: 38% 62% 56% 44% / 62% 44% 56% 38%;
}
.value-blob:nth-child(4) {
  border-radius: 56% 44% 44% 56% / 44% 56% 44% 56%;
}

/* ── Blob colour variants ── */
.value-blob-dark {
  background: linear-gradient(150deg, #4D7B74 0%, #315D58 100%);
}

.value-blob-dark::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: inherit;
  background: radial-gradient(circle at 38% 34%, rgba(255,255,255,0.07), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.value-blob-mint {
  background: linear-gradient(145deg, #CCF0E0 0%, #A8DDCA 100%);
}

.value-blob-glass {
  background: rgba(255, 255, 255, 0.86);
  border: 2px solid rgba(184, 160, 113, 0.75);
  box-shadow: 0 12px 34px rgba(31, 42, 38, 0.07);
}

.value-blob-warm {
  background: linear-gradient(145deg, #5B9E8E 0%, #3D7268 100%);
}

.value-blob-warm::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: inherit;
  background: radial-gradient(circle at 62% 30%, rgba(255,255,255,0.07), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ── Blob icon ── */
.vblob-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.value-blob-dark .vblob-icon,
.value-blob-warm .vblob-icon {
  stroke: rgba(255, 255, 255, 0.82);
}

.value-blob-mint .vblob-icon {
  stroke: #2A5E4E;
}

.value-blob-glass .vblob-icon {
  stroke: #8E8573;
}

/* ── Blob text ── */
.value-blob h3 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.28rem);
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.value-blob p {
  font-size: 0.92rem;
  line-height: 1.65;
  position: relative;
  z-index: 2;
}

.value-blob-dark h3,
.value-blob-dark p,
.value-blob-warm h3,
.value-blob-warm p {
  color: #F2FAF7;
}

.value-blob-dark p,
.value-blob-warm p {
  color: rgba(242, 250, 247, 0.86);
}

.value-blob-mint h3 {
  color: #1B3D30;
}
.value-blob-mint p {
  color: #2D5244;
}

.value-blob-glass h3 {
  color: #1F2A26;
}
.value-blob-glass p {
  color: #4a6058;
}

/* ── Responsive ── */
@media (max-width: 820px) {
  .about-clean-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-img-col::before {
    display: none;
  }

  .value-blobs {
    gap: 20px;
  }

  .value-blob {
    padding: 38px 28px 34px;
  }
}

@media (max-width: 560px) {
  .value-blobs {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .value-blob {
    border-radius: 40% 60% 52% 48% / 50% 46% 54% 50% !important;
  }
}
