.our-story {
  padding: 6rem 2rem;
  background: white;
  position: relative;
}

.story-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-content h2 {
  font-size: 2.5rem;
  color: #5c4033;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.story-intro {
  font-size: 1.05rem;
  color: #6b7560;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.story-sections {
  margin-bottom: 2rem;
}

.story-block {
  margin-bottom: 2.5rem;
}

.story-block h3 {
  font-size: 1.2rem;
  color: #5c4033;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.story-block p {
  font-size: 0.95rem;
  color: #6b7560;
  line-height: 1.8;
}

.story-cta {
  padding: 1.5rem;
  border-left: 3px solid #a0826d;
  background: #faf8f5;
  margin-top: 2.5rem;
}

.story-cta p {
  font-size: 1rem;
  color: #5c4033;
  font-weight: 500;
  margin: 0;
}

.story-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-decor {
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 1.6;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  justify-self: end;
}

.story-image-placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #f5f1ed 0%, #e8dcd2 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 600px) {
  .our-story {
    padding: 3rem 1.5rem;
  }

  .story-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-content h2 {
    font-size: 1.8rem;
  }

  .story-intro {
    font-size: 0.95rem;
  }

  .story-image-placeholder {
    font-size: 6rem;
    max-width: 300px;
  }

  .story-decor {
    max-width: 100%;
    justify-self: center;
  }
}
