.lifestyle-showcase {
  animation: heroFade 360ms ease-out both;
  position: relative;
  border-radius: 32px;
  border: 1px solid rgba(128, 105, 79, 0.16);
  background:
    radial-gradient(110% 120% at 0% 0%, rgba(245, 215, 110, 0.22), transparent 52%),
    radial-gradient(120% 130% at 100% 100%, rgba(184, 216, 232, 0.17), transparent 62%),
    linear-gradient(160deg, #fcf8f2 0%, #f3ece3 100%);
  box-shadow: 0 16px 34px rgba(88, 70, 45, 0.12);
  overflow: visible;
}

.lifestyle-showcase__content {
  padding-inline: 10px;
}

.lifestyle-showcase__header {
  margin-bottom: 14px;
  padding: 6px 0 0;
}

.lifestyle-showcase__title {
  margin: 0;
  color: #27211b;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 42px);
  line-height: 1.15;
}

.lifestyle-showcase__subtitle {
  margin: 8px 0 0;
  color: #5b5145;
  font-family: var(--font-main);
  font-size: 16px;
}

.lifestyle-showcase__filmstrip-bleed {
  position: relative;
  margin-top: 8px;
  margin-bottom: 16px;
}

.filmstrip {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(47, 38, 26, 0.75);
  background: #2c2418;
  padding: 12px 18px;
  overflow: hidden;
  height: 420px;
  max-height: 420px;
}

.filmstrip::before,
.filmstrip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 12px;
  pointer-events: none;
  background-image: radial-gradient(circle at center, rgba(246, 238, 218, 0.72) 3px, transparent 3.5px);
  background-size: 24px 12px;
  background-repeat: repeat-x;
  z-index: 2;
}

.filmstrip::before {
  top: 2px;
}

.filmstrip::after {
  bottom: 2px;
}

.filmstrip__viewport {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.filmstrip__track {
  --film-gap: 16px;
  --film-start: 0px;
  --film-loop: 0px;
  display: flex;
  width: max-content;
  gap: var(--film-gap);
  animation: filmScroll 40s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  height: 100%;
}

.filmstrip:hover .filmstrip__track {
  animation-play-state: paused;
}

.filmstrip.is-manual .filmstrip__track {
  animation: none;
}

.filmstrip__frame {
  margin: 0;
  width: var(--film-frame-width, 240px);
  min-width: var(--film-frame-width, 240px);
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.filmstrip__frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 20%;
  filter: sepia(15%);
}

.lifestyle-stories-row {
  margin-top: 0;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 8px;
}

.lifestyle-stories-row::-webkit-scrollbar {
  height: 8px;
}

.lifestyle-stories-row::-webkit-scrollbar-thumb {
  background: rgba(93, 75, 53, 0.35);
  border-radius: 999px;
}

.lifestyle-story-card {
  position: relative;
  flex: 0 0 min(320px, calc(100vw - 5.5rem));
  padding: 20px 16px 16px;
  border-radius: 14px;
  border: 1px solid rgba(131, 109, 81, 0.22);
  background: #fefcf8;
  box-shadow: 0 10px 20px rgba(93, 74, 49, 0.12);
  scroll-snap-align: start;
}

.lifestyle-story-card::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 90px;
  height: 18px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(245, 215, 110, 0.62), rgba(245, 215, 110, 0.72));
  transform: translateX(-50%) rotate(-2deg);
  opacity: 0.9;
}

.lifestyle-story-card:nth-child(odd) {
  transform: rotate(-1.5deg);
}

.lifestyle-story-card:nth-child(even) {
  transform: rotate(1deg);
}

.lifestyle-story-card__title {
  margin: 0;
  color: #2a241d;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.2;
}

.lifestyle-story-card__body {
  margin: 10px 0 0;
  color: #3d3a32;
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.55;
}

.lifestyle-story-card__link {
  margin-top: 10px;
  display: inline-flex;
  color: #2e271d;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.lifestyle-instagram-cta {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(44, 36, 24, 0.68);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fef6e4;
  text-decoration: none;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  transition: background 200ms ease;
  z-index: 3;
}

.lifestyle-instagram-cta:hover {
  background: rgba(44, 36, 24, 0.84);
}

.lifestyle-instagram-cta__icon {
  flex-shrink: 0;
}

.lifestyle-instagram-cta__handle {
  opacity: 0.72;
  font-weight: 400;
}

@keyframes filmScroll {
  from {
    transform: translateX(var(--film-start));
  }
  to {
    transform: translateX(calc(var(--film-start) - var(--film-loop)));
  }
}

@media (max-width: 767px) {
  .lifestyle-showcase__filmstrip-bleed {
    margin-top: 6px;
    margin-bottom: 14px;
  }

  .filmstrip {
    padding: 9px 12px;
    min-height: 280px;
  }

  .filmstrip__track {
    --film-gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .filmstrip__track {
    animation: none !important;
    transform: translateX(0) !important;
  }
}

/* ── Lifestyle + Telegram two-column row ─────────────────────── */

.lifestyle-tg-row {
  display: grid;
  grid-template-columns: 65fr 35fr;
  gap: 20px;
  align-items: start;
  margin-top: 14px;
}

.lifestyle-tg-row__left,
.lifestyle-tg-row__right {
  min-width: 0;
}

.lifestyle-tg-row__right {
  padding-top: 8px;
}

/* Telegram card in row */
.tg-card {
  height: 420px;
  background: var(--color-paper, #f5f0eb);
  border: 1px solid rgba(124, 103, 78, 0.18);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 24px;
  gap: 14px;
  box-shadow: 0 8px 18px rgba(88, 70, 45, 0.08);
}

.tg-card .tg-title {
  margin: 0;
  font-size: 20px;
}

.tg-card .tg-description {
  margin: 0;
  max-width: 100%;
  font-size: 14px;
}

.tg-card .tg-subscribe-btn {
  align-self: center;
}

@media (max-width: 767px) {
  .lifestyle-tg-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tg-card {
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    padding: 16px 20px;
    gap: 12px;
  }

  .tg-card .tg-description {
    display: none;
  }

  .tg-card .tg-subscribe-btn {
    align-self: center;
  }
}

/* ── Story card link variant ───────────────────────────────────────────────── */
a.lifestyle-story-card--link {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: opacity 0.15s ease;
}

a.lifestyle-story-card--link:hover {
  opacity: 0.78;
}
