* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  height: 100%;
}

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #f8f3e9;
  background: #14100c;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  display: flex;
  min-height: 100vh;
}

/* ---------- Photo pane (left on desktop, top on mobile) ---------- */

.photo-pane {
  position: relative;
  flex: 1 1 50%;
  overflow: hidden;
  background: #14100c;
  min-height: 100vh;
}

.bg-slideshow {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  will-change: opacity;
}

.slide.active {
  opacity: 1;
}

/* Subtle inner shadow on the photo edge facing the poem to soften the seam. */
.photo-pane::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, transparent 75%, rgba(13, 9, 7, 0.55) 100%);
}

/* ---------- Poem pane (right on desktop, bottom on mobile) ---------- */

.poem-pane {
  flex: 1 1 50%;
  background:
    radial-gradient(ellipse at top, #1c1612 0%, #100c09 70%) #100c09;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.25rem 2.25rem;
  min-height: 100vh;
}

.poem {
  max-width: 500px;
  text-align: center;
}

.poem header {
  margin-bottom: 1.6rem;
}

.poem h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  letter-spacing: 0.005em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.poem .subtitle {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  font-weight: 400;
  padding-left: 0.45em;
  opacity: 0.82;
}

.stanza {
  margin: 1.05rem 0;
}

.stanza p {
  font-size: clamp(0.95rem, 1.5vw, 1.12rem);
  line-height: 1.5;
  margin: 0.1rem 0;
  font-weight: 400;
  letter-spacing: 0.005em;
}

.stanza.closing {
  margin-top: 1.5rem;
}

.stanza.closing p.emphasized {
  font-style: italic;
  margin-top: 0.5rem;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  font-weight: 500;
}

/* ---------- Responsive: stack on narrow viewports ---------- */

@media (max-width: 900px) {
  body { flex-direction: column; height: auto; }
  .photo-pane {
    flex: 0 0 50vh;
    min-height: 50vh;
  }
  .photo-pane::after {
    background: linear-gradient(180deg, transparent 0%, transparent 75%, rgba(13, 9, 7, 0.55) 100%);
  }
  .poem-pane {
    flex: 1 1 auto;
    min-height: 50vh;
    padding: 3rem 1.5rem;
  }
  .poem header { margin-bottom: 2rem; }
  .stanza { margin: 1.4rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  .slide { transition: none; }
}
