/* === Story Section (Dark) === */
.story {
  background: #0b3d0b;   /* dark Irish green */
  color: #f7f5e7;        /* parchment text */
  padding: 5rem 1.5rem;
}

.story .container {
  max-width: 1000px;
  text-align: center;
}

.story h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #d4af37; /* gold heading */
  margin-bottom: 1.5rem;
}

.story-intro {
  font-size: 1.3rem;
  margin-bottom: 3rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.story-text {
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #f7f5e7;
}

.story-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  border: 2px solid #d4af37; /* gold frame */
}

/* Mobile */
@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
  .story-text {
    text-align: center;
  }
}
