:root {
  --bg: #f3f1ee;
  --line: #e2ddd4;
  --text: #141414;
  --muted: #605b53;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 84% 10%, rgba(151, 203, 198, 0.2), transparent 34%),
    radial-gradient(circle at 8% 12%, rgba(255, 255, 255, 0.72), transparent 40%),
    var(--bg);
}

.story-shell {
  max-width: 1220px;
  margin: 0 auto;
  padding: 20px 18px 48px;
}

.story-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand-wrap {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(16, 18, 20, 0.16);
}

.brand-text h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1;
}

.brand-text p {
  margin: 4px 0 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.back-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  text-decoration: none;
  color: #111;
  font-weight: 700;
  background: #fff;
}

.story-main {
  margin-top: 16px;
  display: grid;
  gap: 16px;
}

.story-stage {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: clamp(300px, 48vw, 620px);
  background: #121416;
}

.stage-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--pos, 50% 50%);
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 1200ms ease-in-out;
  will-change: opacity;
}

.stage-slide.is-active {
  opacity: 1;
}

.story-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(124deg, rgba(8, 12, 16, 0.28) 0%, rgba(8, 12, 16, 0.08) 56%, rgba(8, 12, 16, 0.24) 100%);
  pointer-events: none;
}

.story-cards {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-card {
  background: #f6f5f3;
  border: 1px solid #ddd7cd;
  border-radius: 14px;
  padding: clamp(16px, 2vw, 24px);
  box-shadow: 0 10px 24px rgba(12, 16, 20, 0.08);
}

.story-card h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.02;
}

.story-card p {
  margin: 12px 0 0;
  color: #2f2b27;
  line-height: 1.9;
  font-size: 14px;
}

@media (max-width: 980px) {
  .story-cards {
    grid-template-columns: 1fr;
  }

  .story-stage {
    min-height: clamp(260px, 56vw, 420px);
  }

  .story-header {
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .brand-logo {
    width: 76px;
    height: 76px;
  }

  .brand-text h1 {
    font-size: 38px;
  }

  .story-stage {
    min-height: clamp(220px, 60vw, 340px);
  }
}
