/* ==============================
   STORY PAGES — shared styles
============================== */

body.story-page {
  background: var(--white);
}

/* ── Hero ── */

.story-hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.story-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
  display: block;
}

.story-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
}

.story-back {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4rem;
  transition: color 0.3s ease;
}

.story-back:hover { color: var(--white); }

.story-hero-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 300;
  line-height: 0.85;
  color: rgba(255,255,255,0.06);
  position: absolute;
  top: 3rem;
  right: 2.5rem;
  pointer-events: none;
  user-select: none;
}

.story-hero h1 {
  color: var(--white);
  font-size: clamp(3.5rem, 7vw, 7rem);
  margin-bottom: 1.5rem;
}

.story-hero-meta {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.story-hero-meta span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.story-hero-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

/* ── Body ── */

.story-body {
  max-width: 1080px;
  margin: 0 auto;
  padding: 7rem 3rem;
}

.story-body p {
  font-size: 1.05rem;
  line-height: 2;
  color: var(--grey-dark);
  margin-bottom: 2rem;
  max-width: 640px;
}

.story-body p:last-child { margin-bottom: 0; }

.story-chapter {
  margin-bottom: 5rem;
}

.story-chapter-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-mid);
  display: block;
  margin-bottom: 1.5rem;
}

.story-chapter h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 2.5rem;
  line-height: 1.1;
  max-width: 640px;
}

/* ── Pull quote ── */

.story-pullquote {
  background: var(--black);
  padding: 7rem 2.5rem;
  margin: 0;
}

.story-pullquote blockquote {
  max-width: 820px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* ── Photo placeholder ── */

.story-photo-block {
  margin: 5rem 0;
  background: var(--grey-light);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.story-photo-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-photo-caption {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-top: 1rem;
  display: block;
}

/* ── Video block ── */

.story-video-block {
  margin: 5rem 0;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--black);
}

.story-video-block video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Two-up photos ── */

.story-photos-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 5rem 0;
}

.story-photos-two .story-photo-block {
  margin: 0;
  aspect-ratio: 3/4;
}

/* ── Stat callout ── */

.story-stat {
  border-top: 1px solid var(--grey-light);
  border-bottom: 1px solid var(--grey-light);
  padding: 3rem 0;
  margin: 5rem 0;
  display: flex;
  gap: 5rem;
}

.story-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.story-stat-number {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--black);
}

.story-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

/* ── Batch / pre-order section ── */

.batch-section {
  background: var(--black);
  padding: 8rem 2.5rem;
}

.batch-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

.batch-left h2 {
  color: var(--white);
  margin-bottom: 2rem;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
}

.batch-left p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.9;
}

.batch-left p strong {
  color: var(--white);
  font-weight: 500;
}

.batch-right {
  display: flex;
  justify-content: center;
}

.batch-date-card {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 3rem 2.5rem;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.batch-date-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.batch-date {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.batch-day {
  font-family: var(--serif);
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--white);
}

.batch-month-year {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.batch-month-year span {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

.batch-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.batch-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.batch-cta {
  display: block;
  background: var(--white);
  color: var(--black);
  text-align: center;
  padding: 1rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
}

.batch-cta:hover {
  background: var(--grey-light);
}

.batch-sub {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .batch-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .batch-section {
    padding: 6rem 1.5rem;
  }

  .batch-date-card {
    max-width: 100%;
  }
}

/* ── Next project ── */

.story-next {
  background: var(--black);
  padding: 5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  text-decoration: none;
  transition: background 0.4s ease;
}

.story-next:hover { background: #111; }

.story-next-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: block;
  margin-bottom: 0.75rem;
}

.story-next h3 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.story-next-arrow {
  color: rgba(255,255,255,0.3);
  font-size: 2rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease;
}

.story-next:hover .story-next-arrow {
  transform: translateX(8px);
  color: var(--white);
}

/* ── Responsive ── */

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

  .story-hero-num { display: none; }

  .story-body {
    padding: 5rem 1.25rem;
  }

  .story-pullquote {
    padding: 5rem 1.5rem;
  }

  .story-photos-two {
    grid-template-columns: 1fr;
  }

  .story-stat {
    flex-direction: column;
    gap: 2.5rem;
  }

  .story-next {
    padding: 4rem 1.5rem;
  }
}

/* Print CTA block */
.story-print-cta {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--grey-light);
}

.story-print-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.story-print-cta h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 0.4rem;
}

.story-print-cta p {
  font-size: 0.88rem;
  color: rgba(10,10,10,0.5);
}

@media (max-width: 600px) {
  .story-print-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
