/* ============================================================
   ÉTIENNE — Le Piano Man
   Vintage supper-club / cabaret poster. Aged paper, ink, cabaret
   red, brass. Fraunces (display) · Oswald (caps) · Yellowtail (script)
   ============================================================ */

:root {
  --ink: #191412;
  --ink-soft: #2a231f;
  --paper: #f2e7ce;
  --paper-deep: #e7d8b4;
  --red: #c3342b;
  --red-deep: #a02820;
  --gold: #b98d43;
  --sunset: #d96c33;
  --serif: "Fraunces", Georgia, serif;
  --caps: "Oswald", "Arial Narrow", sans-serif;
  --script: "Yellowtail", cursive;
  --shadow-print: 4px 4px 0 rgba(25, 20, 18, 0.9);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--serif);
  font-weight: 300;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

::selection { background: var(--red); color: var(--paper); }

/* Film grain over everything */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 80;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 1.2s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-1.2%, 0.8%); }
  50% { transform: translate(0.9%, -0.6%); }
  75% { transform: translate(-0.5%, -1%); }
  100% { transform: translate(0, 0); }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.12s; }
.reveal.d2 { transition-delay: 0.24s; }
.reveal.d3 { transition-delay: 0.36s; }
.reveal.d4 { transition-delay: 0.48s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Shared type ---------- */
.kicker {
  font-family: var(--caps);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.9em;
  color: var(--red);
}
.kicker::before { content: ""; width: 2.6em; height: 2px; background: currentColor; flex: none; }
.kicker-dot { font-size: 0.5em; color: var(--gold); }

h1, h2, h3 { font-weight: 900; line-height: 0.98; letter-spacing: -0.01em; }
h2 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); margin: 0.5em 0 0.4em; }
h2 em { font-style: italic; font-weight: 400; color: var(--red); }

.section { position: relative; padding: clamp(4.5rem, 9vw, 8rem) clamp(1.25rem, 5vw, 4rem); }
.section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-head .kicker { justify-content: center; }
.section-head .kicker::after { content: ""; width: 2.6em; height: 2px; background: currentColor; flex: none; }
.section-lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); font-style: italic; opacity: 0.85; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--caps);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1em 1.9em;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn-red { background: var(--red); color: var(--paper); border-color: var(--ink); box-shadow: var(--shadow-print); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: var(--shadow-print); }
@media (hover: hover) {
  .btn-red:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(25, 20, 18, 0.9); background: var(--red-deep); }
  .btn-ghost:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(25, 20, 18, 0.9); background: var(--ink); color: var(--paper); }
}
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 rgba(25, 20, 18, 0.9); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem clamp(1.25rem, 4vw, 3rem);
  background: rgba(242, 231, 206, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--ink);
}
.nav-brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-monogram {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 1.05rem;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  border-radius: 50%;
  flex: none;
}
.nav-name { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; letter-spacing: 0.01em; }
.nav-name em { font-style: italic; color: var(--red); }
.nav-links { display: flex; gap: clamp(1rem, 2.5vw, 2.2rem); }
.nav-links a {
  font-family: var(--caps);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.4em 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
@media (hover: hover) { .nav-links a:hover { border-color: var(--red); color: var(--red); } }
.nav-cta { padding: 0.7em 1.4em; font-size: 0.75rem; box-shadow: 3px 3px 0 rgba(25, 20, 18, 0.9); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--paper); }
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6.5rem) clamp(1.25rem, 5vw, 4rem) clamp(3.5rem, 7vw, 6rem);
}
.hero-title {
  font-size: clamp(3.4rem, 8.6vw, 7.6rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0.35em 0 0.3em;
}
.hero-line { display: block; }
.hero-line:last-child { position: relative; color: var(--ink); }
.hero-script {
  position: absolute;
  left: 58%;
  bottom: -0.42em;
  transform: rotate(-6deg);
  font-family: var(--script);
  font-size: clamp(2rem, 4.6vw, 4rem);
  font-weight: 400;
  color: var(--red);
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow: 2px 2px 0 var(--paper);
  pointer-events: none;
}
.hero-sub { font-size: clamp(1.05rem, 1.7vw, 1.3rem); max-width: 34em; margin-bottom: 2.2rem; }
.hero-sub strong { font-weight: 600; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-art { position: relative; }
.hero-frame {
  position: relative;
  border: 2px solid var(--ink);
  outline: 2px solid var(--ink);
  outline-offset: 6px;
  background: var(--paper-deep);
  transform: rotate(1.6deg);
  box-shadow: 10px 12px 0 rgba(25, 20, 18, 0.16);
}
.hero-frame img { width: 100%; height: auto; }
.hero-stamp {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.55em 1em;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--caps);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-align: center;
}
.hero-stamp span { color: var(--gold); }

/* Piano-key divider strip (pure CSS) */
.keys-divider {
  height: 62px;
  background-color: #faf3e0;
  background-image:
    /* black keys: one octave = 280px */
    linear-gradient(90deg,
      transparent 0, transparent 28px, var(--ink) 28px, var(--ink) 52px,
      transparent 52px, transparent 68px, var(--ink) 68px, var(--ink) 92px,
      transparent 92px, transparent 148px, var(--ink) 148px, var(--ink) 172px,
      transparent 172px, transparent 188px, var(--ink) 188px, var(--ink) 212px,
      transparent 212px, transparent 228px, var(--ink) 228px, var(--ink) 252px,
      transparent 252px, transparent 280px),
    /* white key separators every 40px */
    repeating-linear-gradient(90deg, transparent 0, transparent 38.5px, rgba(25,20,18,0.55) 38.5px, rgba(25,20,18,0.55) 40px);
  background-size: 280px 62%, 40px 100%;
  background-repeat: repeat-x, repeat;
  background-position: top left, top left;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.keys-divider.flip { transform: scaleY(-1); }

/* Marquee */
.marquee { overflow: hidden; background: var(--ink); color: var(--paper); border-bottom: 3px solid var(--ink); }
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2.2rem;
  padding: 0.85rem 0;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-family: var(--caps);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.marquee-track i { font-style: normal; color: var(--red); font-size: 0.7rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Le Show ---------- */
.show { background: var(--ink); color: var(--paper); }
.show .kicker { color: var(--gold); }
.show h2 em { color: var(--gold); }
.acts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
  max-width: 1140px;
  margin: 0 auto;
}
.act {
  position: relative;
  border: 1px solid rgba(242, 231, 206, 0.28);
  padding: 2.4rem 1.8rem 2rem;
  background: linear-gradient(160deg, rgba(242, 231, 206, 0.05), rgba(242, 231, 206, 0));
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.act::before {
  content: "";
  position: absolute;
  top: 10px; left: 10px; right: 10px; bottom: 10px;
  border: 1px solid rgba(242, 231, 206, 0.12);
  pointer-events: none;
}
@media (hover: hover) {
  .act:hover { transform: translateY(-6px); border-color: var(--gold); background: linear-gradient(160deg, rgba(195, 52, 43, 0.14), rgba(242, 231, 206, 0.02)); }
}
.act-no {
  font-family: var(--caps);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 1.1rem;
}
.act h3 { font-size: 1.7rem; margin-bottom: 0.7rem; font-weight: 600; font-style: italic; }
.act p { font-size: 1rem; opacity: 0.82; }

/* ---------- L'Histoire ---------- */
.story { background: var(--paper); }
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  max-width: 1240px;
  margin: 0 auto;
  align-items: center;
}
.story-photo { position: relative; }
.story-photo img {
  border: 2px solid var(--ink);
  outline: 2px solid var(--ink);
  outline-offset: 6px;
  transform: rotate(-1.6deg);
  box-shadow: -10px 12px 0 rgba(25, 20, 18, 0.14);
  filter: sepia(0.16) saturate(0.94) contrast(1.03);
}
.story-photo figcaption {
  margin-top: 1.4rem;
  font-style: italic;
  font-size: 0.92rem;
  opacity: 0.65;
  text-align: center;
}
.story-copy h2 { margin-top: 0.5rem; }
.story-text p { margin-bottom: 1.1em; font-size: clamp(1rem, 1.5vw, 1.15rem); max-width: 36em; }
.story-quote {
  margin: 2rem 0;
  padding: 1.4rem 1.8rem;
  border-left: 4px solid var(--red);
  background: rgba(195, 52, 43, 0.06);
}
.story-quote p { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 400; font-style: italic; line-height: 1.3; }
.story-quote cite { display: block; margin-top: 0.6rem; font-family: var(--caps); font-style: normal; font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--red); }
.stats { list-style: none; display: grid; grid-template-columns: repeat(4, auto); gap: 1.2rem 2.4rem; margin-top: 2.2rem; }
.stats li { border-top: 2px solid var(--ink); padding-top: 0.7rem; }
.stats strong { display: block; font-family: var(--serif); font-weight: 900; font-size: 2rem; line-height: 1; color: var(--red); }
.stats span { font-family: var(--caps); font-weight: 400; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.75; }

/* ---------- En Direct (video reel) ---------- */
.reel { background: var(--paper-deep); border-top: 3px solid var(--ink); }
.reel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  max-width: 1080px;
  margin: 0 auto;
  align-items: center;
}
.reel-copy h2 { margin-top: 0.5rem; }
.reel-copy p:not(.kicker) { font-size: clamp(1.02rem, 1.6vw, 1.2rem); max-width: 30em; }
.reel-copy strong { font-weight: 600; color: var(--red); }
.reel-frame {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
  border: 2px solid var(--ink);
  outline: 2px solid var(--ink);
  outline-offset: 6px;
  background: var(--ink);
  transform: rotate(1.2deg);
  box-shadow: 10px 12px 0 rgba(25, 20, 18, 0.16);
}
.reel-video { display: block; width: 100%; aspect-ratio: 9 / 16; object-fit: cover; background: var(--ink); }
.reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--red);
  color: var(--paper);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-print);
  transition: transform 0.2s ease, background 0.2s ease;
}
.reel-play svg { margin-left: 4px; }
@media (hover: hover) {
  .reel-play:hover { transform: translate(-50%, -50%) scale(1.08); background: var(--red-deep); }
}
.reel-frame.playing .reel-play { display: none; }
.reel-stamp {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.55em 1em;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--caps);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-align: center;
  pointer-events: none;
}
.reel-stamp span { color: var(--red); }
.reel-frame.playing .reel-stamp { display: none; }

/* ---------- Songbook ---------- */
.songbook { background: var(--ink); color: var(--paper); }
.songbook .kicker { color: var(--gold); }
.songbook h2 em { color: var(--gold); }
.setlist {
  list-style: none;
  max-width: 780px;
  margin: 0 auto;
}
.setlist li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0.4rem;
  border-bottom: 1px solid rgba(242, 231, 206, 0.16);
  transition: background 0.2s ease, padding-left 0.2s ease;
}
@media (hover: hover) {
  .setlist li:hover { background: rgba(195, 52, 43, 0.14); padding-left: 1rem; }
  .setlist li:hover .setlist-song { color: var(--gold); }
}
.setlist-artist { font-family: var(--serif); font-weight: 600; font-size: clamp(1.15rem, 2.4vw, 1.6rem); white-space: nowrap; }
.setlist li::after { content: ""; flex: 1; border-bottom: 2px dotted rgba(242, 231, 206, 0.35); transform: translateY(-0.3em); order: 2; min-width: 2rem; }
.setlist-song { order: 3; font-style: italic; font-weight: 300; font-size: clamp(0.95rem, 1.8vw, 1.15rem); opacity: 0.85; white-space: nowrap; transition: color 0.2s ease; }
.setlist-footnote { text-align: center; font-style: italic; opacity: 0.7; margin: 1.8rem 0 0; }

/* Playable piano */
.piano-wrap { max-width: 780px; margin: 4rem auto 0; text-align: center; }
.piano-invite { font-size: 1.1rem; margin-bottom: 1.2rem; }
.piano-invite .script { font-family: var(--script); font-size: 1.7rem; color: var(--gold); margin-right: 0.3em; }
.piano {
  display: flex;
  align-items: stretch;
  height: clamp(110px, 22vw, 170px);
  border: 3px solid #0d0a09;
  border-top-width: 10px;
  background: #0d0a09;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55), inset 0 -4px 0 rgba(0,0,0,0.3);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
.key { border: none; padding: 0; cursor: pointer; outline-offset: -3px; }
.key.white {
  flex: 1 1 0;
  background: linear-gradient(180deg, #fbf5e4 0%, #f2e7ce 82%, #ddcda6 100%);
  border-left: 1px solid rgba(25, 20, 18, 0.4);
  border-radius: 0 0 4px 4px;
  transition: background 0.08s ease, transform 0.08s ease;
}
.key.white:first-child { border-left: none; }
.key.black {
  flex: 0 0 auto;
  width: 5.4%;
  margin: 0 -2.7%;
  height: 58%;
  background: linear-gradient(180deg, #3a322c 0%, #131010 70%, #000 100%);
  border-radius: 0 0 3px 3px;
  z-index: 2;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  transition: background 0.08s ease, transform 0.08s ease;
}
.key.white.pressed, .key.white:active { background: linear-gradient(180deg, #efe2c2, #e2d2a8); transform: translateY(2px); }
.key.black.pressed, .key.black:active { background: linear-gradient(180deg, #241f1b, #000); transform: translateY(2px); }
.piano-footnote { margin-top: 1.1rem; font-style: italic; font-size: 0.9rem; opacity: 0.6; }

/* ---------- Schedule ---------- */
.schedule { background: var(--ink); color: var(--paper); padding: 0; }
.schedule-bg { position: absolute; inset: 0; overflow: hidden; }
.schedule-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.42; }
.schedule-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 20, 18, 0.92) 0%, rgba(25, 20, 18, 0.55) 45%, rgba(25, 20, 18, 0.94) 100%);
}
.schedule-inner { position: relative; z-index: 1; padding: clamp(4.5rem, 9vw, 8rem) clamp(1.25rem, 5vw, 4rem); }
.schedule .kicker { color: var(--gold); }
.schedule h2 em { color: var(--gold); }
.tickets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
  max-width: 1180px;
  margin: 0 auto;
}
.ticket {
  position: relative;
  display: flex;
  align-items: stretch;
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 6px 7px 0 rgba(0, 0, 0, 0.4);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.ticket:nth-child(1) { transform: rotate(-1.2deg); }
.ticket:nth-child(2) { transform: rotate(0.8deg); }
.ticket:nth-child(3) { transform: rotate(-0.6deg); }
@media (hover: hover) {
  .ticket:hover { transform: rotate(0deg) translateY(-5px); box-shadow: 8px 10px 0 rgba(0, 0, 0, 0.45); }
}
.ticket-day {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 1.2rem 0.9rem;
  background: var(--red);
  color: var(--paper);
  border-right: 2px dashed var(--paper);
  min-width: 5.6rem;
  text-align: center;
}
.ticket-day span { font-family: var(--caps); font-weight: 400; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; line-height: 1.4; }
.ticket-day strong { font-family: var(--serif); font-weight: 900; font-size: 1.75rem; line-height: 1; }
.ticket-body { padding: 1.2rem 1.2rem 1.1rem; flex: 1; }
.ticket-body h3 { font-size: 1.28rem; font-weight: 600; font-style: italic; margin-bottom: 0.4rem; }
.ticket-venue { font-family: var(--caps); font-weight: 500; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); }
.ticket-note { font-size: 0.86rem; font-style: italic; opacity: 0.65; margin-top: 0.35rem; }
.ticket-adm {
  flex: 0 0 auto;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: grid;
  place-items: center;
  padding: 0.6rem 0.35rem;
  border-left: 2px dashed rgba(25, 20, 18, 0.45);
  font-family: var(--caps);
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.55;
}
.schedule-fineprint { text-align: center; margin-top: 2.6rem; font-style: italic; opacity: 0.75; font-size: 0.95rem; }
.schedule-fineprint a { color: var(--gold); }

/* ---------- Gallery ---------- */
.gallery { background: var(--paper); padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(3rem, 6vw, 5rem); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.9rem, 2vw, 1.6rem);
  max-width: 1240px;
  margin: 0 auto;
}
.g-item { position: relative; overflow: hidden; border: 2px solid var(--ink); background: var(--paper-deep); }
.g-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease; filter: sepia(0.14) contrast(1.02); }
.g-item.tall img { aspect-ratio: 3 / 4; }
@media (hover: hover) { .g-item:hover img { transform: scale(1.045); filter: sepia(0) contrast(1.05); } }

/* ---------- Booking ---------- */
.book { background: var(--red); color: var(--paper); }
.book::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(0, 0, 0, 0.22), transparent 55%),
    radial-gradient(ellipse at 90% 90%, rgba(0, 0, 0, 0.28), transparent 50%);
  pointer-events: none;
}
.book-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}
.book .kicker { color: var(--paper); }
.book h2 { color: var(--paper); }
.book h2 em { color: var(--ink); }
.book-copy > p { font-size: clamp(1rem, 1.6vw, 1.2rem); max-width: 30em; }
.book-list { list-style: none; margin-top: 1.6rem; }
.book-list li { padding: 0.55rem 0 0.55rem 1.9rem; position: relative; font-size: 1.02rem; }
.book-list li::before { content: "♪"; position: absolute; left: 0; top: 0.5rem; color: var(--ink); font-size: 1.1rem; }

.book-form {
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 8px 9px 0 rgba(0, 0, 0, 0.35);
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
}
.hp { position: absolute; left: -9999px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: block; margin-bottom: 1.1rem; }
.field span {
  display: block;
  font-family: var(--caps);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--red);
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  background: rgba(25, 20, 18, 0.04);
  border: none;
  border-bottom: 2px solid var(--ink);
  padding: 0.65em 0.7em;
  border-radius: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; background: rgba(195, 52, 43, 0.07); border-color: var(--red); }
.btn-submit { width: 100%; margin-top: 0.4rem; font-size: 0.9rem; }
.form-fineprint { margin-top: 1rem; text-align: center; font-style: italic; font-size: 0.88rem; opacity: 0.65; }
.book-form.sent .field-row, .book-form.sent .field, .book-form.sent .btn-submit, .book-form.sent .form-fineprint, .book-form.sent .form-error { display: none; }
.form-error {
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--red);
  border: 2px solid var(--red);
  background: rgba(195, 52, 43, 0.08);
  padding: 0.7em 1em;
}
.form-success { text-align: center; padding: 2.5rem 1rem; }
.form-success .script { font-family: var(--script); font-size: 2.2rem; color: var(--red); display: block; margin-bottom: 0.5rem; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--paper); text-align: center; padding-bottom: 3rem; }
.footer .keys-divider { margin-bottom: 3.5rem; }
.footer-script { font-style: italic; opacity: 0.7; font-size: 1.05rem; }
/* fit-content before rotating — a full-width rotated block pushes its corners
   past the viewport and puts a horizontal scrollbar on every screen size */
.footer-sig { font-family: var(--script); font-size: clamp(3rem, 8vw, 5.5rem); color: var(--red); line-height: 1.1; width: fit-content; max-width: 100%; margin: 0.1em auto 0.3em; transform: rotate(-3deg); }
.footer-social { display: flex; justify-content: center; align-items: center; gap: 1rem; margin: 1.2rem 0 1.6rem; }
.footer-social a {
  font-family: var(--caps);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
@media (hover: hover) { .footer-social a:hover { color: var(--gold); border-color: var(--gold); } }
.footer-social span { color: var(--red); }
.footer-fine { font-family: var(--caps); font-weight: 300; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.45; }
.footer-credit { margin-top: 0.7rem; font-family: var(--caps); font-weight: 300; font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.4; }
.footer-credit a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(242, 231, 206, 0.4); }
@media (hover: hover) { .footer-credit a:hover { color: var(--gold); border-color: var(--gold); } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1023px) {
  .acts { grid-template-columns: 1fr; max-width: 620px; }
  .tickets { grid-template-columns: 1fr; max-width: 560px; }
  .stats { grid-template-columns: repeat(2, auto); }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { max-width: 420px; margin: 1rem auto 0; width: 100%; }
  .story-grid { grid-template-columns: 1fr; }
  .story-photo { max-width: 460px; margin: 0 auto; }
  .reel-grid { grid-template-columns: 1fr; }
  .reel-frame { max-width: 340px; }
  .book-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .hero-script { left: 34%; bottom: -0.62em; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .stats { gap: 1rem 1.6rem; }
  .stats strong { font-size: 1.6rem; }
  .setlist-artist { font-size: 1.05rem; }
  .setlist-song { font-size: 0.85rem; white-space: normal; text-align: right; }
  .ticket-day { min-width: 4.6rem; }
  .marquee-track span { font-size: 0.72rem; }
  .nav-name { display: none; }
}
