/*
  LastPick - Our Story Section
  This file contains styles for the "Our Story" section.
}

.our-story-section {
  background: #FFEFB3; /* Use official LastPick Butter color */
}

.our-story-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.4rem);
}

.our-story-text {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.8vw, 1rem);
}

.our-story-heading {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700; /* REFINEMENT: Reduced font weight for a more elegant heading. */
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  max-width: 14ch;
}

.our-story-content p {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.78;
}

.our-story-image {
  /* FIX: Removed position: relative as it's not needed here. */
  width: 100%;
  aspect-ratio: 16 / 9; /* Set a true 16:9 landscape aspect ratio */
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 32px rgba(15, 91, 60, 0.1),
              0 4px 12px rgba(15, 91, 60, 0.08);
}

.our-story-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.our-story-image:hover img {
  transform: scale(1.03);
}