/* ============================================================
   MILF Life Crisis — milflifecrisis.com
   Palette and display face carried over from the show poster.
   ============================================================ */

@font-face {
  font-family: 'Governor';
  src: url('../fonts/governor.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* poster colours */
  --sky:      #99DCF6;
  --sky-deep: #6BC5E9;
  --red:      #FF0202;
  --red-dark: #CC0000;
  --ink:      #0B0B0B;
  --ink-soft: #1C1C1C;
  --white:    #FFFFFF;
  --grey:     #6A6A6A;

  --display: 'Governor', 'Haettenschweiler', 'Arial Narrow Bold', Impact, sans-serif;
  --body:    'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --mono:    'Space Mono', ui-monospace, 'Courier New', monospace;

  --wrap: 1120px;
  --gutter: clamp(20px, 5vw, 48px);
  --bay: clamp(64px, 9vw, 120px);   /* vertical rhythm between sections */

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, p, ul, ol, dl, dd, figure, blockquote { margin: 0; }
ul { padding: 0; list-style: none; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}
.marquee :focus-visible,
.booking :focus-visible,
.foot :focus-visible { outline-color: var(--sky); }

.vh {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}
.skip {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--red); color: var(--white);
  padding: 10px 16px; border-radius: 999px;
  font: 700 14px/1 var(--mono); text-decoration: none;
  transition: top .2s var(--ease);
}
.skip:focus { top: 12px; }

:target, section[id] { scroll-margin-top: 84px; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- shared type ---------- */
.h-display {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: .92;
  font-size: clamp(38px, 6.2vw, 76px);
}
.h-display em { font-style: normal; color: var(--red); }
.h-display--sky { color: var(--sky); }
.h-display--sky em { color: var(--red); }

.label {
  font: 700 12px/1 var(--mono);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.label--sky { color: var(--sky); }

.lede { font-size: 1.15em; font-weight: 500; }

.caption {
  font: 400 12px/1.5 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 12px;
}

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--red);
  --btn-fg: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 2px solid var(--btn-bg);
  border-radius: 999px;
  padding: 14px 28px;
  font: 700 15px/1 var(--body);
  letter-spacing: .01em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease),
              border-color .18s var(--ease), color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--red:hover { --btn-bg: var(--red-dark); }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { --btn-bg: var(--ink); --btn-fg: var(--white); }
.btn--lg { padding: 18px 36px; font-size: 17px; }
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--block { width: 100%; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink);
  color: var(--white);
}
.topbar__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  gap: 24px;
}
.topbar__mark {
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: .02em;
  text-decoration: none;
  white-space: nowrap;
}
.topbar__mark-red { color: var(--red); }
.topbar__nav {
  margin-left: auto;
  display: flex;
  gap: 28px;
  font: 700 12px/1 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.topbar__nav a {
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.topbar__nav a:hover { color: var(--sky); border-bottom-color: var(--sky); }

@media (max-width: 860px) {
  .topbar__nav { display: none; }
  .topbar__cta { margin-left: auto; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--sky);
  padding-bottom: clamp(48px, 7vw, 88px);
  overflow: hidden;
}
.hero__poster img {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  /* dissolve the bottom crop of the poster into the sky */
  -webkit-mask-image: linear-gradient(to bottom, #000 90%, rgba(0,0,0,.55) 96%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 90%, rgba(0,0,0,.55) 96%, transparent 100%);
  animation: rise .9s var(--ease) both;
}
.hero__pitch {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  text-align: center;
  margin-top: clamp(10px, 2vw, 28px);
}
.hero__tagline {
  font-size: clamp(19px, 2.3vw, 26px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  animation: rise .9s .12s var(--ease) both;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
  animation: rise .9s .22s var(--ease) both;
}
.hero__kicker {
  margin-top: 28px;
  font: 700 12px/1 var(--mono);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #06485F;
  animation: rise .9s .3s var(--ease) both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   REVIEW BAND
   ============================================================ */
.marquee {
  background: var(--ink);
  color: var(--white);
  padding-block: var(--bay);
  text-align: center;
}
.stars {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 26px;
}
.stars svg { width: 22px; fill: var(--red); }
.pullquote { max-width: 820px; margin-inline: auto; }
.pullquote > p:first-child {
  font-family: var(--display);
  font-size: clamp(34px, 6vw, 72px);
  line-height: .98;
  text-transform: uppercase;
  letter-spacing: .005em;
  text-wrap: balance;
}
.pullquote__rest {
  margin-top: 20px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: #C9C9C9;
  max-width: 58ch;
  margin-inline: auto;
  text-wrap: pretty;
}
.pullquote__by {
  margin-top: 22px;
  font: 700 12px/1 var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sky);
}
.pullquote__by span { color: var(--grey); font-weight: 400; }

.seeif__label { margin-top: clamp(48px, 6vw, 72px); }
.seeif {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.seeif li {
  border: 1px solid #333;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 15px;
  color: #E4E4E4;
}
.seeif li:last-child {
  border-color: var(--sky);
  color: var(--sky);
}

/* ============================================================
   THE SHOW
   ============================================================ */
.show { padding-block: var(--bay); }
.show__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.show__head .h-display { font-size: clamp(32px, 4.6vw, 58px); }
.show__copy > * + * { margin-top: 18px; }
.show__copy p { max-width: 52ch; }

.define {
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  margin-top: clamp(44px, 6vw, 72px);
  padding: 26px 0;
  font-family: var(--mono);
  display: grid;
  grid-template-columns: minmax(200px, 1fr) 2fr;
  gap: 8px clamp(20px, 4vw, 56px);
  align-items: baseline;
}
.define dt {
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 30px);
  text-transform: uppercase;
  letter-spacing: .04em;
  grid-row: span 2;
}
.define__pron, .define__pos {
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--grey);
}
.define__pos { font-style: italic; }
.define dd { font-size: clamp(15px, 1.5vw, 17px); line-height: 1.5; }
.define__aside { color: var(--red); }

.frame {
  border: 3px solid var(--ink);
  box-shadow: 14px 14px 0 var(--sky);
}
.video { position: relative; aspect-ratio: 16 / 9; background: var(--ink); }
.video img,
.video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border: 0;
}
.video__play {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  background: rgba(11, 11, 11, .28);
  border: 0;
  cursor: pointer;
  transition: background-color .25s var(--ease);
}
.video__play:hover { background: rgba(11, 11, 11, .12); }
.video__icon {
  width: 76px; height: 76px;
  border-radius: 999px;
  background: var(--red);
  display: grid;
  place-items: center;
  transition: transform .25s var(--ease);
}
.video__icon::after {
  content: '';
  width: 0; height: 0;
  margin-left: 5px;
  border-left: 22px solid var(--white);
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}
.video__play:hover .video__icon { transform: scale(1.08); }
.video__text {
  font: 700 12px/1 var(--mono);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
}

@media (max-width: 900px) {
  .show__head { grid-template-columns: 1fr; }
  .frame { box-shadow: 10px 10px 0 var(--sky); }
  .define { grid-template-columns: 1fr; }
  .define dt { grid-row: auto; margin-bottom: 6px; }
}

/* ============================================================
   DATES — ticket stubs
   ============================================================ */
.dates {
  background: var(--sky);
  padding-block: var(--bay);
}
.dates .label { color: #06485F; }
.dates__h { margin-bottom: 40px; }

.tickets { display: grid; gap: 22px; }

.ticket {
  --notch: 22px;
  display: grid;
  grid-template-columns: 1fr 250px;
  background: var(--white);
  border: 3px solid var(--ink);
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.ticket:hover {
  transform: translateY(-4px) rotate(-.35deg);
  box-shadow: 12px 14px 0 rgba(11, 11, 11, .9);
}
.ticket__body {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: clamp(16px, 3vw, 40px);
  padding: clamp(22px, 3vw, 34px);
  align-items: start;
}
.ticket__when {
  font-family: var(--display);
  text-transform: uppercase;
  line-height: .9;
  color: var(--ink);
}
.ticket__dow {
  display: block;
  font: 700 12px/1 var(--mono);
  letter-spacing: .2em;
  color: var(--red);
}
.ticket__day {
  display: block;
  font-size: clamp(58px, 7vw, 82px);
  margin: 6px 0 4px;
}
.ticket__month {
  display: block;
  font: 700 13px/1 var(--mono);
  letter-spacing: .16em;
  color: var(--ink);
}

.ticket__where h3 {
  font-family: var(--display);
  font-size: clamp(26px, 3.2vw, 36px);
  text-transform: uppercase;
  line-height: 1;
}
.ticket__addr {
  margin-top: 6px;
  font: 400 14px/1.5 var(--mono);
  color: var(--grey);
}
.ticket__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 16px;
}
.ticket__meta li {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 5px 14px;
  font: 700 12px/1.4 var(--mono);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* the perforated stub */
.ticket__stub {
  position: relative;
  border-left: 3px dashed var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  text-align: center;
}
/* punched notches sit on the perforation */
.ticket__stub::before,
.ticket__stub::after {
  content: '';
  position: absolute;
  left: calc(var(--notch) / -2 - 1px);
  width: var(--notch);
  height: var(--notch);
  border-radius: 999px;
  background: var(--sky);
  border: 3px solid var(--ink);
}
.ticket__stub::before { top: calc(var(--notch) / -2 - 3px); }
.ticket__stub::after  { bottom: calc(var(--notch) / -2 - 3px); }

.ticket__admit {
  font: 700 11px/1 var(--mono);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--grey);
}

.dates__empty {
  background: var(--white);
  border: 3px solid var(--ink);
  padding: clamp(28px, 4vw, 44px);
  max-width: 640px;
}
.dates__empty-h {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 34px);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.dates__empty a { color: var(--red); }

@media (max-width: 780px) {
  .ticket { grid-template-columns: 1fr; }
  .ticket__body { grid-template-columns: 1fr; gap: 18px; }
  .ticket__when { display: flex; align-items: baseline; gap: 12px; }
  .ticket__day { font-size: 44px; margin: 0; }
  .ticket__stub {
    border-left: 0;
    border-top: 3px dashed var(--ink);
    padding: 22px;
  }
  .ticket__stub::before,
  .ticket__stub::after {
    left: auto; top: calc(var(--notch) / -2 - 3px); bottom: auto;
  }
  .ticket__stub::before { left: calc(var(--notch) / -2 - 1px); }
  .ticket__stub::after  { right: calc(var(--notch) / -2 - 1px); }
}

/* ============================================================
   BOOKING + LIST
   ============================================================ */
.booking {
  background: var(--ink);
  color: var(--white);
  padding-block: var(--bay);
}
.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  /* The form is much taller than the booking pitch — sit the pitch against
     the middle of it rather than leaving a hole underneath. */
  align-items: center;
}
.booking__pitch p { color: #C9C9C9; max-width: 40ch; }
/* Sized so "Bring Anne Marie" stays on one line in this two-column layout —
   the name reads as a unit. Governor sets it at ~10.6× the font size, and the
   column is a shade under half of 1120px. */
.booking .h-display {
  font-size: clamp(28px, 3.6vw, 42px);
  margin-bottom: 20px;
}

.mailto {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  font: 700 clamp(14px, 1.6vw, 18px)/1 var(--mono);
  text-decoration: none;
  color: var(--white);
  word-break: break-all;
}
.mailto__icon {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 999px;
  background: var(--red);
  display: grid; place-items: center;
  transition: transform .2s var(--ease);
}
.mailto__icon svg { width: 20px; fill: var(--white); }
.mailto:hover { color: var(--sky); }
.mailto:hover .mailto__icon { transform: scale(1.08); }

/* form */
.form { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label {
  font: 700 12px/1 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sky);
}
.field__opt { color: var(--grey); font-weight: 400; letter-spacing: .08em; }
.field input,
.field select,
.field textarea {
  background: var(--ink-soft);
  border: 2px solid #333;
  border-radius: 4px;
  padding: 13px 15px;
  color: var(--white);
  width: 100%;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.field textarea { resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: #7A7A7A; }
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: #4A4A4A; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--sky);
  background: #101010;
}
.form .btn { margin-top: 6px; }
.form .btn[disabled] { opacity: .65; cursor: progress; transform: none; }
.pot {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.form__note {
  font: 400 12px/1.5 var(--mono);
  color: var(--grey);
  text-align: center;
}
.form__status {
  font: 700 13px/1.5 var(--mono);
  text-align: center;
  margin-top: -4px;
}
.form__status:empty { display: none; }
.form__status[data-state="ok"]  { color: var(--sky); }
.form__status[data-state="bad"] { color: var(--red); }

@media (max-width: 820px) {
  .booking__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOT
   ============================================================ */
.foot {
  background: var(--ink);
  color: var(--grey);
  border-top: 1px solid #262626;
  padding-block: 32px;
}
.foot__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  align-items: center;
  font: 400 13px/1.5 var(--mono);
}
.foot__mark {
  font-family: var(--display);
  font-size: 20px;
  text-transform: uppercase;
  color: var(--white);
  margin-right: auto;
}
.foot__mark span { color: var(--red); }
.foot a { color: var(--sky); }

/* ============================================================
   SMALL SCREENS
   ============================================================ */
@media (max-width: 560px) {
  .topbar__inner { padding-block: 10px; }
  .topbar__mark { font-size: 18px; }
  .topbar__cta { padding: 9px 16px; font-size: 13px; }

  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn--lg { padding: 16px 24px; font-size: 16px; }
  .hero__kicker { letter-spacing: .12em; font-size: 11px; }

  .stars svg { width: 18px; }
  .seeif li { font-size: 14px; padding: 7px 15px; }

  .ticket__meta li { font-size: 11px; }
  .mailto { font-size: 13px; }
}

/* ============================================================
   MOTION PREFERENCES
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-delay: 0ms !important;
    transition-duration: .001ms !important;
  }
  .ticket:hover { transform: none; }
}
