/* ============================================================
   REEL PAGE STYLES
   Used only by: reel.html
   Global styles (nav, footer, buttons, colors) are in styles.css
   ============================================================ */

/* Reel section */
.reel-section {
  padding: 0;
}

/* ---------------------------------- */
/* Reel hero section */
/* ---------------------------------- */
.reel-hero {
  padding: 56px 0 80px;
}

/* Main headline: actor-centered, elegant, and strong */
.hero-title {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(2.8rem, 4.8vw, 4.9rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  color: #2f241d;
}

/* Main positioning statement:
   this is the most important text after the headline */
.hero-positioning {
  max-width: 720px;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  color: rgba(47, 36, 29, 0.86);
  margin-bottom: 18px;
}

/* Supporting line:
   useful information, but visually secondary */
.hero-supporting {
  max-width: 760px;
  font-size: 0.96rem;
  line-height: 1.6;
  color: rgba(47, 36, 29, 0.56);
  margin-bottom: 44px;
}

/* Reel wrapper:
   slightly tighter than before so the intro and reel feel connected */
.hero-reel {
  margin-top: 0;
}

/* Small label above the section */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #a95f33;
  margin-bottom: 24px;
}

/* Optional decorative line before the eyebrow label */
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.9;
}

/* Featured reel frame */
.video-frame--hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(47, 36, 29, 0.14);
  background: #e8dfd2;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(47, 36, 29, 0.05);
}

.video-frame--hero iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Reel caption */
.media-caption {
  margin-top: 10px;
  font-size: 0.82rem;
  color: rgba(47, 36, 29, 0.5);
}

/* Container width for a refined, centered layout */
.container--narrow {
  width: min(980px, calc(100% - 64px));
  margin: 0 auto;
}

/* Secondary section wraps Monologues with slightly reduced visual weight. */
.reel-secondary {
  margin-bottom: 88px;
  opacity: 0.92;
}

/* Each content block (Film, Monologues, Photos) */
.reel-block {
  margin-bottom: 76px;
}

/* ============================================================
   SECTION LABELS
   The small row above each block: dot + label on left,
   meta info (duration, count) on right
   ============================================================ */
.reel-section-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 0.5px solid rgba(47, 36, 29, 0.16);
}

.label-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Terracotta bullet dot */
.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
}

.label-text {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9f4a25;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
}

.label-meta {
  font-size: 10px;
  color: rgba(47, 36, 29, 0.58);
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
}

/* ============================================================
   VIDEO EMBEDS
   .video-wrapper is a responsive 16:9 container.
   Think of it like a picture frame that always stays the
   right proportions no matter how wide the screen is.
   ============================================================ */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  background: var(--ink);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Hero video: constrained width so it feels like a cinema frame, not a billboard */
.video-hero {
  max-width: 960px;
  margin: 0 auto;
}

/* Gold accent line across the very top of the hero video */
.video-hero .video-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  z-index: 1;
}

/* Caption below the film reel */
.video-caption {
  font-size: 12px;
  color: var(--warm-muted);
  font-weight: 300;
  font-family: 'DM Sans', sans-serif;
  margin-top: 10px;
}

/* ============================================================
   MONOLOGUE GRID
   Two cards side by side on desktop, stacked on mobile
   ============================================================ */
.monologue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* Minimal card treatment gives the monologues more presence without making them feel boxed in. */
.monologue-card {
  display: flex;
  flex-direction: column;
  padding-bottom: 4px;
}

/* A quiet top line gives each tone its own temperature while staying within the warm palette. */
.monologue-card .video-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  z-index: 1;
}

/* Cover reveal animates a lightweight layer, leaving Vimeo iframes mounted once. */
.monologue-card .video-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cream);
  opacity: 1;
  pointer-events: none;
  z-index: 2;
  animation: monologueReveal 0.75s ease forwards;
  animation-delay: 0.75s;
}

@keyframes monologueReveal {
  to { opacity: 0; }
}

.monologue-card--dramatic .video-wrapper::before {
  background: rgba(122, 98, 72, 0.72);
}

.monologue-card--comedic .video-wrapper::before {
  background: rgba(196, 87, 42, 0.66);
}

/* Tone metadata lets the range read quickly before the eye settles into the title. */
.monologue-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding-bottom: 10px;
  border-bottom: 0.5px solid rgba(47, 36, 29, 0.11);
}

.monologue-tone,
.monologue-duration {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.monologue-tone {
  color: rgba(47, 36, 29, 0.74);
}

.monologue-duration {
  color: rgba(47, 36, 29, 0.48);
  white-space: nowrap;
}

/* Caption block below each monologue card */
.monologue-caption {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 12px;
}

.monologue-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  line-height: 1.25;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}

.monologue-meta {
  font-size: 11px;
  color: rgba(47, 36, 29, 0.52);
  font-weight: 300;
  font-family: 'DM Sans', sans-serif;
}

/* ============================================================
   PHOTO GRID
   Asymmetric: two portrait photos stacked left (55%), large landscape right (45%)
   ============================================================ */
.photo-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 20px;
  align-items: start;
}

.photo-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.photo-small {
  position: relative;
  overflow: hidden;
}

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

.photo-large {
  position: relative;
  overflow: hidden;
}

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

/* Small label in the bottom-left corner of each photo */
.photo-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-muted);
  font-weight: 300;
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  padding: 3px 8px;
}

/* ============================================================
   RESPONSIVE - tablet (991px and below)
   ============================================================ */
@media (max-width: 991px) {
  .monologue-grid { grid-template-columns: 1fr; gap: 40px; }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-large img { height: 300px; }
  .photo-stack { flex-direction: row; }
  .photo-small img { height: 180px; }
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .reel-hero {
    padding: 40px 0 64px;
  }

  .hero-title {
    margin-bottom: 14px;
  }

  .hero-positioning {
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .hero-supporting {
    font-size: 0.92rem;
    margin-bottom: 28px;
  }

  .container--narrow {
    width: min(100% - 32px, 980px);
  }

  .reel-secondary {
    margin-bottom: 72px;
  }

  .reel-block {
    margin-bottom: 64px;
  }

  .monologue-meta-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

/* ============================================================
   RESPONSIVE - mobile (479px and below)
   ============================================================ */
@media (max-width: 479px) {
  .photo-stack { flex-direction: column; }
  .photo-small img { height: 200px; }
}
