/* =============================================
   ZAYTONA GRILL — story.css  v2
   ============================================= */

/* HERO */
.story-hero {
  position: relative;
  height: 68vh;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.story-hero-bg { position: absolute; inset: 0; }
.story-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 25%;
}
.story-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,14,5,0.88) 0%, rgba(10,14,5,0.35) 60%, rgba(10,14,5,0.2) 100%);
}
.story-hero-content {
  position: relative; z-index: 2;
  color: #fff;
  padding-bottom: 4rem;
  max-width: 700px;
}
.story-hero-content h1 { color: #fff; margin: 0.75rem 0 0.875rem; }
.story-hero-content p  { color: rgba(255,255,255,0.7); font-size: var(--text-md); }

/* MAIN BODY */
.story-main { background: var(--off-white); padding: 5rem 0; }
.story-body {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

/* OPENER */
.story-opener p { color: var(--ink-mid); font-size: var(--text-md); line-height: 1.85; }
.story-opener p + p { margin-top: 1.25rem; }
.story-drop-cap { font-family: var(--ff-display); font-style: italic; font-size: 1.2em !important; color: var(--ink) !important; }

/* FULL IMAGE */
.story-image-full { border-radius: var(--r-xl); overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.story-image-full img { width: 100%; height: 400px; object-fit: cover; }

/* CHAPTER */
.story-chapter { display: flex; flex-direction: column; gap: 1rem; }
.chapter-label {
  font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-muted);
}
.story-chapter h2 { font-size: clamp(var(--text-xl), 3vw, var(--text-2xl)); color: var(--ink); }
.story-chapter p  { color: var(--ink-mid); font-size: var(--text-md); line-height: 1.82; }

/* PULLQUOTE */
.story-pullquote {
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  background: var(--white);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.story-pullquote p {
  font-family: var(--ff-display); font-style: italic;
  font-size: var(--text-xl); color: var(--ink);
  line-height: 1.45; margin-bottom: 0.75rem;
}
.story-pullquote cite {
  font-size: var(--text-xs); color: var(--ink-muted);
  font-style: normal; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
}

/* IMAGE GRID */
.story-image-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.story-image-grid img { width: 100%; height: 240px; object-fit: cover; border-radius: var(--r-lg); }

/* PROMISE */
.story-promise { background: var(--ink-soft); border-radius: var(--r-xl); padding: 3rem; text-align: center; }
.story-promise-inner { max-width: 520px; margin: 0 auto; }
.promise-leaf { font-size: 2.25rem; display: block; margin-bottom: 1rem; }
.story-promise h3 { color: #fff; font-size: var(--text-2xl); margin-bottom: 1rem; }
.story-promise p  { color: rgba(255,255,255,0.65); font-size: var(--text-md); line-height: 1.75; margin-bottom: 2rem; }
.promise-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.promise-actions .btn-outline {
  color: #fff; border-color: rgba(255,255,255,0.35);
}
.promise-actions .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

/* RESPONSIVE */
@media (max-width: 600px) {
  .story-hero { height: 55vh; }
  .story-image-grid { grid-template-columns: 1fr; }
  .story-image-grid img { height: 200px; }
  .story-pullquote { padding: 1.25rem 1.5rem; }
  .story-pullquote p { font-size: var(--text-lg); }
  .story-promise { padding: 2.5rem 1.5rem; }
  .story-image-full img { height: 240px; }
}
