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

:root {
  --bg:     #000000;
  --text:   #ffffff;
  --muted:  rgba(255, 255, 255, 0.68);
  --accent: #df8882;
  /* Comfortable reading measure: ~58 characters per line. */
  --measure: 30rem;
}

html {
  font-size: 17px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Marcellus', serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
}

/* ── Hero ────────────────────────────────── */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.hero > picture > img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.55) 65%, var(--bg) 100%);
}

.hero .title-block {
  position: relative;
  z-index: 1;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}


/* ── Title ───────────────────────────────── */

.title-image {
  display: block;
  width: 320px;
  height: auto;
}


/* ── Rule ────────────────────────────────── */

.rule {
  border: none;
  border-top: 1px solid var(--accent);
  width: 321px;
  max-width: 100%;
  margin: 2.25rem 0;
}


/* ── Blurb ───────────────────────────────── */

.blurb {
  max-width: min(var(--measure), 100%);
  margin-bottom: 2.75rem;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--muted);
}

.blurb p + p {
  margin-top: 1.5rem;
}

.blurb a,
.sample-note a {
  border-bottom: 1px solid rgba(223, 136, 130, 0.45);
  transition: color 0.2s, border-color 0.2s;
}

.blurb a:hover,
.sample-note a:hover {
  color: var(--text);
  border-color: var(--text);
}


/* ── Details ─────────────────────────────── */

.venue {
  font-size: 1.05rem;
}

.address {
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: color 0.2s, border-color 0.2s;
}

.address:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.when {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--text);
}

.tickets {
  display: inline-block;
  margin-top: 2.25rem;
  padding: 0.8rem 2.25rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s;
}

.tickets:hover {
  background: var(--accent);
  color: var(--bg);
}


/* ── Sample-video note ───────────────────── */

.sample-note {
  max-width: min(var(--measure), 100%);
  margin-top: 1.75rem;
  font-size: 0.95rem;
  color: var(--muted);
}


/* ── Back link ───────────────────────────── */

.back {
  display: block;
  margin-top: 3.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  width: fit-content;
}

.back:hover {
  color: var(--accent);
  border-color: var(--accent);
}


/* ── Responsive ──────────────────────────── */

@media (min-width: 900px) {
  .hero .title-block {
    /* Indent with the viewport, but stop drifting on ultra-wide screens. */
    padding: 10vh clamp(2rem, 15%, 11rem);
  }
}

@media (max-width: 520px) {
  .hero .title-block {
    padding: 1.25rem;
  }
}
