/* About Page — Story, Full-Width Image */

/* ─── STORY ─── */
.story { background: var(--cream); position: relative; }
.story::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.02));
  pointer-events: none;
}
.story-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 5rem;
  align-items: start;
}
.story-image-wrap {
  position: sticky;
  top: 7rem;
}
.story-portrait {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border: 2px solid rgba(201,168,76,0.08);
}
.story-content {}
.story-content .quote {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  padding-right: 1.5rem;
  border-right: 2px solid var(--gold);
  font-style: italic;
}
.story-content .narrative {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 2.2;
  margin-bottom: 1.5rem;
}
.story-content .narrative strong {
  color: var(--dark);
  font-weight: 700;
}
.story-signature {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.signature-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.signature-text {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
  font-style: italic;
}
.story-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.story-credentials span {
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.story-credentials span::before {
  content: '\2713';
  color: var(--gold);
  font-weight: 700;
}

/* ─── STORY HIGHLIGHT ANIMATION ─── */
.story-content .narrative strong {
  background: linear-gradient(transparent 60%, rgba(201,168,76,0.25) 60%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: right;
  transition: background-size 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 2px;
}
.story-content .narrative strong.highlighted {
  background-size: 100% 100%;
}

/* ─── RESPONSIVE (768px) ─── */
@media (max-width: 768px) {
  /* Story - lighter */
  .story-container { grid-template-columns: 1fr; gap: 1.5rem; }
  .story-image-wrap { position: static; max-width: 180px; margin: 0 auto; }
  .story-content .quote { font-size: 1.15rem; line-height: 1.7; margin-bottom: 1.5rem; padding-right: 1rem; }
  .story-content .narrative { font-size: 0.92rem; line-height: 1.9; margin-bottom: 1rem; }
  .story-signature { margin-top: 1.5rem; }

  /* Parallax - shorter */
  .full-image { height: 35vh; min-height: 250px; }
  .full-image img { position: absolute; }
  .full-image .overlay-content h3 { font-size: 1.4rem; }
  .full-image .overlay-content p { font-size: 0.88rem; }
}
