/* Story Page Styles */
main.story {
  padding-bottom: var(--s-5);
}
.story {
  padding-top: 0;
}
.story-intro {
  padding: var(--s-5) 0;
  background: var(--color-background);
}
.story-intro h1 {
  text-align: center;
  margin-bottom: var(--s-3);
  color: var(--color-text);
}
.story-lead {
  font-size: 1.25em;
  line-height: 1.6;
  text-align: center;
  max-width: 60ch;
  margin: 0 auto;
  color: var(--color-text);
  opacity: 0.9;
}
.story-vision {
  padding: var(--s-5) 0;
  background: linear-gradient(135deg, #f8f6f2 0%, #f2ede6 100%);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  align-items: center;
}
@media screen and (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: var(--s-3);
  }
  .story-visual {
    order: -1;
  }
}
.story-text {
  font-size: 1.1em;
  line-height: 1.7;
}
.story-cta {
  margin-top: var(--s-3);
}
.story-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-element {
  position: relative;
  width: 100%;
  height: 100%;
}
.floating-stone {
  position: absolute;
  background: var(--color-primary);
  border-radius: var(--radius);
  opacity: 0.6;
}
.stone-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation: float1 6s ease-in-out infinite;
}
.stone-2 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  right: 15%;
  animation: float2 8s ease-in-out infinite;
}
.stone-3 {
  width: 40px;
  height: 40px;
  top: 60%;
  left: 60%;
  animation: float3 7s ease-in-out infinite;
}
@keyframes float1 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(-8deg); }
}
@keyframes float3 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(12deg); }
}
.story-quote {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
.story-quote blockquote {
  font-family: var(--serif);
  font-size: 1.5em;
  font-style: italic;
  color: var(--color-text);
  border: none;
  margin: 0;
  padding: var(--s-3);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 300px;
}
.story-creation {
  padding: var(--s-5) 0;
}
.story-content h2 {
  text-align: center;
  margin-bottom: var(--s-3);
  position: relative;
  display: inline-block;
}
.legacy-content {
  padding: 0;
}
.legacy-content h2 {
  text-align: center;
  margin-bottom: var(--s-3);
  position: relative;
  display: inline-block;
}
.legacy-content a {
  margin-top: var(--s-3);
}