.gallery-section {
  padding: clamp(90px, 10vw, 150px) 0;
  background: #efedea;
  overflow: hidden;
}

.success-head {
  margin-bottom: 58px;
  padding: 0 4vw;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.success-head h2,
.news-head h2 {
  margin: 0;
  font: 600 clamp(54px, 6.7vw, 108px)/.91 'Manrope';
  letter-spacing: -.08em;
}

.news-head h2 em { color: var(--wine); font-style: normal; }

.success-controls { display: flex; gap: 8px; }
.success-controls button { width: 50px; height: 50px; border: 1px solid var(--wine); border-radius: 50%; background: transparent; color: var(--wine); font-size: 20px; cursor: pointer; transition: background .25s, color .25s, transform .25s; }
.success-controls button:hover { background: var(--wine); color: #fff; transform: translateY(-2px); }

.success-story-track {
  display: flex;
  gap: 16px;
  padding: 0 4vw 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 4vw;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}
.success-story-track::-webkit-scrollbar { display: none; }

.success-story {
  position: relative;
  flex: 0 0 clamp(310px, 31vw, 455px);
  height: clamp(440px, 42vw, 580px);
  overflow: hidden;
  scroll-snap-align: start;
  border-radius: 22px;
  background: #8f8c8a;
  box-shadow: 0 14px 35px rgba(36, 23, 27, .08);
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s ease, transform .8s cubic-bezier(.16, 1, .3, 1), box-shadow .35s ease;
}

.success-story::after { content: ''; position: absolute; inset: 36% 0 0; background: linear-gradient(transparent, rgba(21, 12, 15, .92)); pointer-events: none; }
.success-story.is-visible { opacity: 1; transform: translateY(0); }
.success-story:nth-child(2) { transition-delay: .08s; }
.success-story:nth-child(3) { transition-delay: .16s; }
.success-story img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .8s cubic-bezier(.16, 1, .3, 1); }
.success-story:hover { box-shadow: 0 24px 50px rgba(36, 23, 27, .16); }
.success-story:hover img { transform: scale(1.025); }
.story-result {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(248, 244, 240, .9);
  color: var(--wine);
  font: 700 9px 'DM Mono';
  text-transform: uppercase;
  letter-spacing: .03em;
  box-shadow: 0 8px 24px rgba(44, 17, 24, .12);
}

.story-copy {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: #fff;
}
.story-copy h3 { margin: 0 0 10px; font-size: clamp(29px, 2.7vw, 40px); line-height: .97; letter-spacing: -.06em; }
.story-copy p { max-width: 340px; margin: 0; color: #eee5e7; font-size: 13px; line-height: 1.5; }

.success-story-track::after {
  content: 'Drag to explore →';
  flex: 0 0 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine);
  font: 500 10px 'DM Mono';
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.news-section {
  padding: clamp(92px, 10vw, 150px) 6vw;
  background: var(--ink);
  color: #fff;
}

.news-head { margin-bottom: 62px; }
.news-head .eyebrow { color: #d9cfd0; }
.news-head h2 em { color: var(--pink); }

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

.news-card {
  min-height: 420px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid #ffffff20;
  border-radius: 18px;
  background: #2a2224;
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .65s ease, transform .75s cubic-bezier(.16, 1, .3, 1), background .3s;
}

.news-card.is-visible { opacity: 1; transform: translateY(0); }
.news-card:nth-child(2) { transition-delay: .1s; }
.news-card:nth-child(3) { transition-delay: .2s; }
.news-card:hover { background: var(--wine); }
.news-index { margin-bottom: auto; color: var(--pink); font: 500 13px 'DM Mono'; }
.news-meta { margin: 0 0 14px; color: #b9abad; font: 10px 'DM Mono'; letter-spacing: .05em; text-transform: uppercase; }
.news-card h3 { margin: 0 0 18px; font-size: clamp(30px, 3vw, 46px); line-height: .98; }
.news-card > p:not(.news-meta) { color: #cfc5c7; font-size: 13px; line-height: 1.65; }
.news-card a { width: max-content; margin-top: 20px; color: #fff; text-decoration: none; font-size: 12px; }
.news-card a span { margin-left: 12px; color: var(--pink); }

@media (max-width: 900px) {
  .success-story { flex-basis: min(72vw, 440px); }
  .news-grid { grid-template-columns: 1fr; }
  .news-card { min-height: 340px; }
}

@media (max-width: 600px) {
  .gallery-section,
  .news-section { padding: 78px 20px; }
  .gallery-section { padding-left: 0; padding-right: 0; }
  .success-head { padding: 0 20px; align-items: flex-end; }
  .success-head h2,
  .news-head h2 { font-size: 50px; }
  .success-controls button { width: 42px; height: 42px; }
  .success-story-track { padding-left: 20px; scroll-padding-left: 20px; }
  .success-story { flex-basis: 82vw; height: 500px; }
  .story-copy { left: 22px; right: 22px; bottom: 22px; }
  .story-copy h3 { font-size: 34px; }
  .news-card { min-height: 360px; padding: 24px; }
}
