/* Three Fours Ranch — Our Story page */

/* ---------- Hero ---------- */
.story-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 104px 40px 72px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.story-hero h1 {
  font-size: clamp(34px, 6vw, 54px);
  line-height: 1.12;
  text-wrap: pretty;
}

/* ---------- Family / place photo ---------- */
.story-family {
  padding-bottom: 88px;
}

.story-family figure {
  margin: 0;
  height: 560px;
  min-width: 0;
  overflow: hidden;
  background: var(--blush);
}

.story-family img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* portrait source: frame heads AND torsos; group sits right of the frame's
     center, so bias the window right to balance the composition */
  object-position: 62% 35%;
}

/* ---------- The dream / letter ---------- */
.story-letter {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px 104px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  font-size: 17px;
  line-height: 1.85;
  color: #4A3634;
}

.story-letter p { margin: 0; }

.story-signature {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--maroon);
}

/* ---------- Team (blush panel) ---------- */
.story-team {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 40px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.story-team-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  align-items: center;
}

.story-team-head h2 {
  font-size: clamp(28px, 4vw, 40px);
}

.story-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.story-member {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}

.story-portrait {
  width: 260px;
  height: 260px;
  min-width: 0;
  overflow: hidden;
  border-radius: 50%;
  background: var(--cream);
}

.story-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-member h3 { font-size: 26px; }

.story-member p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 42ch;
}

/* ---------- Mission ---------- */
.story-mission {
  max-width: 780px;
  margin: 0 auto;
  padding: 104px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.story-mission h2 {
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.3;
  text-wrap: pretty;
}

.story-mission p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--muted);
}

/* ---------- Responsive ---------- */
@media (max-width: 1023px) {
  .story-family figure { height: 400px; }
  .story-team-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .story-hero { padding: 72px 24px 48px; }
  .story-family { padding-bottom: 56px; }
  .story-family figure { height: 280px; }
  .story-letter { padding: 0 24px 72px; }
  .story-team { padding: 64px 24px; }
  .story-mission { padding: 64px 24px; }
  .story-portrait { width: 200px; height: 200px; }
}
