/* ==========================================================================
   Ruthie Henshall — Official Site
   Vanilla CSS · Mobile-first · Breakpoints 768px / 1200px
   ========================================================================== */

:root {
  /* Colours */
  --color-bg: #0d0d0d;
  --color-gold: #C9A84C;
  --color-lavender: #C4A8D4;
  --color-text: #F0EDE6;
  --color-muted: #888880;
  --color-surface: #1a1a1a;

  /* Type families — site-wide naming standard
     raleway  = structural / UI: logos, nav, page H1s, buttons, badges, labels, credentials
     headline = emotional statement headlines (e.g. bio "Four decades of musical theatre")
     feature  = show / book "playbill" titles (card titles)
     body     = all body copy */
  --font-raleway: 'Raleway', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-headline: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-feature: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  /* legacy aliases → map old variable names onto the new system */
  --font-heading: var(--font-feature);
  --font-display: var(--font-raleway);

  /* Type scale */
  --fs-hero: clamp(3rem, 12vw, 8rem);
  --fs-h1: clamp(2.25rem, 6vw, 4rem);
  --fs-h2: clamp(1.75rem, 4vw, 2.75rem);
  --fs-h3: 1.5rem;
  --fs-lead: 1.25rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;

  /* Spacing & layout */
  --space-section: clamp(3rem, 8vw, 6rem);
  --maxw-content: 1200px;
  --maxw-text: 700px;
  --header-h: 68px;
  --header-h-scrolled: 52px;

  /* Effects */
  --transition: 0.3s ease;
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.45);
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--color-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-lavender); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1.25em; }

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-gold);
  color: var(--color-bg);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw-content);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section { padding-block: var(--space-section); }
/* Pull two related sections closer (e.g. Solo Albums → Cast Recordings) */
.section--tight-bottom { padding-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.section--tight-top { padding-top: clamp(1.5rem, 3vw, 2.5rem); }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: var(--fs-h2);
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 2.5rem;
}
/* Raleway section headings used on the homepage */
.section-heading {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.1;
  color: var(--color-text);
  margin: 0.5rem 0 0.75rem;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.text-center { text-align: center; }

/* ---------- Scroll reveal (generic, reusable site-wide) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* Reduced motion / no-JS safety: always show, never animate */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-raleway);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border: 1px solid var(--color-gold);
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn--gold {
  background: var(--color-gold);
  color: var(--color-bg);
}
.btn--gold:hover {
  background: transparent;
  color: var(--color-gold);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--color-gold);
}
.btn--outline:hover {
  background: var(--color-gold);
  color: var(--color-bg);
  transform: translateY(-2px);
}
.btn--lavender {
  background: var(--color-lavender);
  color: var(--color-bg);
  border-color: var(--color-lavender);
}
.btn--lavender:hover {
  background: transparent;
  color: var(--color-lavender);
  transform: translateY(-2px);
}
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
}
.btn:disabled:hover {
  background: var(--color-gold);
  color: var(--color-bg);
  transform: none;
}
.btn--shimmer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn--shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.42;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 244, 199, 0.18) 34%, rgba(255, 255, 255, 0.58) 48%, rgba(255, 244, 199, 0.18) 62%, transparent 78%);
  transform: translateX(-135%);
  animation: button-shimmer 7.5s ease-in-out infinite;
}
.btn--shimmer:hover::after {
  opacity: 0.3;
}
@keyframes button-shimmer {
  0%, 56% { transform: translateX(-135%); }
  82%, 100% { transform: translateX(135%); }
}

/* ---------- Pills / badges ---------- */
.pill {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}
.pill--gold { background: var(--color-gold); color: var(--color-bg); }
.pill--lavender { background: var(--color-lavender); color: var(--color-bg); }
.pill--inline {
  font-size: 0.6rem;
  padding: 0.18rem 0.55rem;
  letter-spacing: 0.14em;
  margin-left: 0.5rem;
  vertical-align: middle;
  white-space: nowrap;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  z-index: 900;
  transition: height var(--transition), background var(--transition);
}
.site-header.is-scrolled {
  height: var(--header-h-scrolled);
  background: rgba(13, 13, 13, 0.96);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--color-gold);
  white-space: nowrap;
}
.logo:hover { color: var(--color-gold); opacity: 0.85; }

.nav-desktop { display: none; }
.nav-desktop ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-desktop a {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-text);
  font-size: var(--fs-small);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] { color: var(--color-gold); }

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-gold);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Full-screen overlay nav */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform var(--transition);
  z-index: 1000;
}
.nav-overlay.is-open { transform: translateX(0); }
.nav-overlay ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.nav-overlay li { margin: 1.25rem 0; }
.nav-overlay a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--color-gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-overlay a:hover { color: var(--color-lavender); }

body.nav-open { overflow: hidden; }

/* ==========================================================================
   MAIN / page offset for fixed header
   ========================================================================== */
main { padding-top: var(--header-h); }

/* ==========================================================================
   HERO (homepage)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  margin-top: calc(-1 * var(--header-h));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  filter: grayscale(100%) brightness(1.12) contrast(1.04);
  z-index: -2;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Dark only at the bottom-left (where the text sits); transparent toward the
     top-right so the brightened image stays open elsewhere */
  background:
    linear-gradient(to top right, rgba(13,13,13,0.96) 0%, rgba(13,13,13,0.7) 28%, rgba(13,13,13,0.32) 52%, rgba(13,13,13,0) 78%),
    linear-gradient(to top, rgba(13,13,13,0.62) 0%, rgba(13,13,13,0.12) 38%, rgba(13,13,13,0) 52%);
}
.hero {
  align-items: flex-end;
}
.hero__inner {
  padding-block: clamp(2.5rem, 7vh, 5rem);
  max-width: 48%;
  min-width: 18rem;
  margin-inline: 0 auto;
  text-align: left;
}
.hero__subhead {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0.92;
  max-width: 40ch;
  margin: 0 0 0.85rem;
  white-space: nowrap;
  transform: translateX(0.32em);
}
.hero h1 {
  font-family: var(--font-raleway);
  font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 5.25rem);
  color: var(--color-gold);
  letter-spacing: 0.03em;
  line-height: 1.02;
  text-transform: uppercase;
  margin: 0;
}
.hero__memoir {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text);
  max-width: 38ch;
  margin: 0;
}
.hero__order {
  font-weight: 600;
  color: var(--color-gold);
  white-space: nowrap;
  border-bottom: 1px solid currentColor;
}
.hero__order:hover { color: var(--color-lavender); }

/* ==========================================================================
   NOW section — cards
   ========================================================================== */
.now-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
.now-grid--single {
  grid-template-columns: minmax(0, 440px);
  justify-content: center;
}
.now-card {
  position: relative;
  background: var(--color-surface);
  border-top: 3px solid var(--color-gold);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
/* Hover: a left-side border "pours" downward from the top */
.now-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--color-gold);
  transition: height 0.4s ease-out;
}
.now-card--book::after { background: var(--color-lavender); }
.now-card:hover::after { height: 100%; }
.now-card--book { border-top-color: var(--color-lavender); }
.now-card h3 {
  font-family: var(--font-feature);
  font-size: 2rem;
  color: var(--color-text);
  margin: 0.4rem 0 0;
}
.now-card .role,
.now-card .subtitle {
  color: var(--color-text);
  font-size: 1rem;
  font-family: var(--font-body);
  line-height: 1.5;
}
.now-card .book-cover {
  max-width: 160px;
  display: block;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.5);
}
.now-card dl {
  margin: 0.25rem 0 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 0.75rem;
  font-size: var(--fs-small);
}
.now-card dt { color: var(--color-muted); }
.now-card dd { margin: 0; }
.now-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Bio snippet ---------- */
.bio-snippet {
  max-width: var(--maxw-text);
  margin-inline: auto;
  text-align: center;
}
.bio-snippet p { font-size: var(--fs-lead); }
.bio-snippet .link-cta {
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   PAGE BANNER (interior pages)
   ========================================================================== */
.page-banner {
  text-align: center;
  background: linear-gradient(160deg, #141414 0%, #0d0d0d 100%);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  /* Tighter top / bottom padding (was min-height: 42vh, flex-centred);
     bottom is smaller to shorten the gap down to the divider line */
  padding-block: clamp(3rem, 7vh, 4.25rem) clamp(1.5rem, 3.5vh, 2.25rem);
}
.page-banner h1 {
  font-family: var(--font-raleway);
  font-weight: 800;
  font-size: var(--fs-h1);
  color: var(--color-gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.35rem; /* tighter gap to the subtitle */
}
.page-banner p { color: var(--color-muted); margin: 0; }

/* ==========================================================================
   ABOUT — two columns + sticky sidebar
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.about-bio a {
  color: var(--color-gold);
  text-decoration: none;
}
.about-bio a:hover {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.about-headshot {
  width: 100%;
  display: block;
  margin: 0 0 2rem;
  border-radius: 0;
}
.fact-card {
  background: var(--color-surface);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 1.75rem;
}
.fact-card h2 {
  font-size: var(--fs-h3);
  color: var(--color-gold);
}
.fact-card dl { margin: 0; }
.fact-card dt {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: 1rem;
}
.fact-card dd { margin: 0.15rem 0 0; font-family: var(--font-heading); font-size: 1.2rem; }

/* ==========================================================================
   SHOWS — filter + table
   ========================================================================== */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.filter-tab {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.filter-tab:hover { border-color: var(--color-gold); }
.filter-tab[aria-pressed="true"] {
  background: var(--color-gold);
  color: var(--color-bg);
  border-color: var(--color-gold);
}

.credits-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-small);
}
.credits-table caption { text-align: left; color: var(--color-muted); padding-bottom: 0.75rem; }
.credits-table th {
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}
.credits-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
}
.credits-table tbody tr:hover { background: rgba(201, 168, 76, 0.05); }
.credits-table .col-year { color: var(--color-gold); font-family: var(--font-heading); font-size: 1.05rem; white-space: nowrap; }
.credits-table .col-prod { font-weight: 600; }
.credits-table .col-role { color: var(--color-text); }
.credits-table .col-venue { color: var(--color-muted); }

.star { color: var(--color-gold); margin-left: 0.35rem; font-size: 0.9em; }
.legend {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.75rem;
  font-size: var(--fs-xs);
  color: var(--color-muted);
}

/* Hide rows not matching the active filter */
.credits-table tr[hidden] { display: none; }

/* ==========================================================================
   PRESS — pull quotes
   ========================================================================== */
.quote-list { max-width: 820px; margin-inline: auto; }
.press-quote {
  text-align: center;
  margin: 0 0 var(--space-section);
}
.press-quote blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1.3;
  color: var(--color-gold);
}
.press-quote cite {
  font-style: normal;
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.press-quote .placeholder { color: var(--color-lavender); }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.form-field { margin-bottom: 1.5rem; }
.form-field label {
  display: block;
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--color-surface);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  padding: 0.85rem 1rem;
  border-radius: 2px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-gold);
  outline: none;
}
.form-field input:disabled,
.form-field select:disabled,
.form-field textarea:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}
.form-field textarea { min-height: 160px; resize: vertical; }
.form-status { font-size: var(--fs-small); color: var(--color-lavender); margin-top: 1rem; min-height: 1.2em; }
/* Collapse the status line while it's empty so it reserves no space below the form;
   spacing returns automatically once a status message is injected on submit. */
.form-status:empty { margin: 0; min-height: 0; }

.contact-details {
  background: var(--color-surface);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 1.75rem;
}
.contact-details h2 {
  color: var(--color-gold);
  font-size: var(--fs-h3);
  line-height: 1.1;            /* tight wrap when the heading breaks across lines */
  margin-bottom: 1rem;
}
.contact-management p { margin: 0 0 0.15rem; line-height: 1.3; }
.contact-management__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--color-text);
}
.contact-management a { color: var(--color-lavender); }
.contact-management__note {
  color: var(--color-muted);
  font-size: var(--fs-small);
  margin-top: 0.6rem !important;
}

/* ==========================================================================
   POLICY pages
   ========================================================================== */
.policy-section {
  padding-top: clamp(2.5rem, 6vw, 4rem);
}
.policy-content {
  max-width: 860px;
}
.policy-content h2 {
  margin: 2rem 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.policy-content p {
  color: var(--color-text);
}
.policy-content a,
.policy-inline-button {
  color: var(--color-lavender);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.policy-inline-button {
  display: inline;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
}
.policy-inline-button:hover,
.policy-inline-button:focus-visible {
  color: var(--color-gold);
}
.policy-updated {
  margin-top: 2.5rem;
  color: var(--color-muted) !important;
  font-size: var(--fs-small);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
  padding-block: 0 2rem;
}
/* Full-width, subtle warm gold-tinted band behind the signup */
.newsletter-strip {
  background: rgba(201, 168, 76, 0.08);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}
.newsletter-strip .container { max-width: 640px; }
.newsletter-strip__cta {
  font-family: var(--font-raleway);
  font-weight: 800;
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gold);
  line-height: 1.25;
  margin: 0 0 0.5rem;
}
.newsletter-strip label {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-small);
  line-height: 1.5;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
}
.newsletter-strip form {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.5rem;
  max-width: 440px;
  margin-inline: auto;
}
.newsletter-strip input {
  flex: 1;
  min-width: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-gold);
  color: #ffffff;
  padding: 0.7rem 1rem;
  border-radius: 2px;
  font-size: var(--fs-body);
  line-height: 1.4;
}
.newsletter-strip input::placeholder { color: var(--color-muted); }
.newsletter-strip input:focus { border-color: var(--color-gold); outline: none; box-shadow: 0 0 0 1px var(--color-gold); }
.newsletter-strip .btn {
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0.7rem 1.25rem;
  white-space: nowrap;
  line-height: 1.4;
}
.newsletter-strip .btn:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}
.newsletter-strip__status {
  max-width: 520px;
  min-height: 1.4em;
  margin: 0.85rem auto 0;
  font-size: var(--fs-small);
  color: var(--color-muted);
}
.newsletter-strip__status:empty {
  min-height: 0;
  margin-top: 0;
}
.newsletter-strip__status--success {
  color: var(--color-gold);
}
.newsletter-strip__status--error {
  color: var(--color-lavender);
}
.newsletter-slideout {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9980;
  width: min(340px, calc(100vw - 2rem));
  padding: 1.1rem;
  border: 1px solid rgba(201, 168, 76, 0.28);
  background: rgba(14, 14, 14, 0.98);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  transform: translateX(calc(100% + 1.25rem));
  opacity: 0;
  pointer-events: none;
  transition: transform 320ms ease, opacity 320ms ease;
}
.newsletter-slideout.is-visible {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.newsletter-slideout__close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 1.8rem;
  height: 1.8rem;
  padding: 0;
  border: 1px solid rgba(201, 168, 76, 0.26);
  border-radius: 50%;
  background: transparent;
  color: var(--color-muted);
  cursor: pointer;
  font-size: 0;
}
.newsletter-slideout__close::before {
  content: "×";
  font-size: 1.2rem;
  line-height: 1;
}
.newsletter-slideout__close:hover,
.newsletter-slideout__close:focus-visible {
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.newsletter-slideout__eyebrow {
  margin: 0 2rem 0.25rem 0;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.newsletter-slideout__title {
  margin: 0 2rem 0.9rem 0;
  font-family: var(--font-raleway);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-gold);
  line-height: 1.25;
}
.newsletter-slideout form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}
.newsletter-slideout input {
  min-width: 0;
  background: var(--color-surface);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: #ffffff;
  padding: 0.65rem 0.75rem;
  border-radius: 2px;
  font-size: var(--fs-small);
}
.newsletter-slideout input:focus {
  border-color: var(--color-gold);
  outline: none;
}
.newsletter-slideout .btn {
  padding: 0.65rem 0.85rem;
  font-size: 0.72rem;
  white-space: nowrap;
}
.newsletter-slideout .newsletter-strip__status {
  margin: 0.65rem 0 0;
  text-align: left;
  font-size: var(--fs-xs);
}
.footer-cols {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  padding-top: 2.5rem;
}
.footer-copy p { margin: 0; line-height: 1.7; }
.footer-cols nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  justify-content: center;
}
.footer-cols nav a {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  font-size: var(--fs-xs);
}
.footer-cols nav a:hover { color: var(--color-gold); }
.footer-copy { color: var(--color-muted); font-size: var(--fs-xs); }
.footer-copy a { color: var(--color-muted); }
.footer-legal {
  margin: 0.55rem 0 0;
  font-size: 0.72rem;
  opacity: 0.78;
}
.footer-legal a {
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.social {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}
.social a { color: var(--color-gold); display: inline-flex; }
.social a:hover { color: var(--color-lavender); }
.social svg { width: 28px; height: 28px; fill: currentColor; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   RESPONSIVE — 768px tablet
   ========================================================================== */
@media (min-width: 768px) {
  .nav-desktop { display: block; }
  .nav-toggle { display: none; }

  .now-grid { grid-template-columns: 1fr 1fr; }
  .now-grid--single { grid-template-columns: minmax(0, 440px); }

  .about-grid { grid-template-columns: 1.8fr 1fr; align-items: start; }
  .about-sidebar { position: sticky; top: calc(var(--header-h-scrolled) + 1.5rem); }

  .contact-grid { grid-template-columns: 1.2fr 1fr; align-items: start; }
  .contact-details { margin-top: calc((var(--fs-xs) * 1.5) + 0.5rem); }

  .footer-cols nav ul { flex-wrap: nowrap; }
}

/* ==========================================================================
   HOMEPAGE — Stat bar
   ========================================================================== */
.stat-bar {
  position: relative;
  background: var(--color-surface);
  padding-block: clamp(2rem, 5vw, 3rem);
}
/* Shimmering gold rules above & below (matches the press-quote rules) */
.stat-bar::before,
.stat-bar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background-image:
    linear-gradient(90deg, transparent 0%, rgba(255, 236, 179, 0.85) 50%, transparent 100%),
    linear-gradient(rgba(201, 168, 76, 0.5), rgba(201, 168, 76, 0.5));
  background-size: 45% 100%, 100% 100%;
  background-position: -45% 0, 0 0;
  background-repeat: no-repeat;
  animation: press-shimmer 12s linear infinite;
}
.stat-bar::before { top: 0; }
.stat-bar::after { bottom: 0; animation-delay: 6s; }
.stat-bar__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1rem;
}
.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.stat__label {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.stat__value {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  line-height: 1.1;
  color: var(--color-gold);
}
.stat-bar__grid--three { grid-template-columns: 1fr; }

/* ==========================================================================
   HOMEPAGE — Book promo section
   ========================================================================== */
.book-promo {
  background: var(--color-surface);
  border-block: 1px solid rgba(201, 168, 76, 0.18);
  padding-block: clamp(3rem, 7vw, 5rem);
}
.book-promo__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
.book-promo__cover {
  width: 100%;
  max-width: 240px;
  display: block;
  box-shadow: var(--shadow-card);
  border: 3px solid var(--color-lavender);
}
.book-promo__body { max-width: 460px; }
.book-promo__body .pill { margin-bottom: 1rem; }
.book-promo__text { color: var(--color-muted); margin-bottom: 1.75rem; }

/* ==========================================================================
   HOMEPAGE — Press quote strip
   ========================================================================== */
.press-strip {
  position: relative;
  padding-block: clamp(3rem, 7vw, 5rem);
}
/* Gold rules above & below, with a shimmer that sweeps top then bottom */
.press-strip::before,
.press-strip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background-image:
    linear-gradient(90deg, transparent 0%, rgba(255, 236, 179, 0.85) 50%, transparent 100%),
    linear-gradient(rgba(201, 168, 76, 0.5), rgba(201, 168, 76, 0.5));
  background-size: 45% 100%, 100% 100%;
  background-position: -45% 0, 0 0;
  background-repeat: no-repeat;
  animation: press-shimmer 12s linear infinite;
}
.press-strip::before { top: 0; }
.press-strip::after { bottom: 0; animation-delay: 6s; }

@keyframes press-shimmer {
  0%   { background-position: -45% 0, 0 0; }
  45%  { background-position: 145% 0, 0 0; }
  100% { background-position: 145% 0, 0 0; }
}
.press-strip__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 900px;
  margin-inline: auto;
}
.press-strip__item { margin: 0; text-align: center; }
.press-strip__item blockquote {
  margin: 0 0 0.6rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  line-height: 1.3;
  color: var(--color-gold);
}
.press-strip__item figcaption {
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* ==========================================================================
   HOMEPAGE — Bio block (text + headshot)
   ========================================================================== */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.bio-block {
  text-align: left;
  border-left: 2px solid var(--color-gold);
  padding-left: 20px;
}
.bio-headshot {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  margin-inline: auto;
  box-shadow: var(--shadow-card);
}
.bio-block__headline {
  font-family: var(--font-headline);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--color-gold);
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 1.25rem;
}
.bio-block p { margin-bottom: 1.25rem; }
.bio-block .link-cta { font-weight: 600; letter-spacing: 0.04em; }

/* ==========================================================================
   SHOWS — expandable credit cards
   ========================================================================== */
.credits-hint {
  text-align: center;
  color: var(--color-muted);
  font-size: var(--fs-small);
  margin-bottom: 1.5rem;
}
.credits-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.credit-card {
  background: var(--color-surface);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-left: 3px solid var(--color-gold);
  transition: border-color var(--transition);
}
.credit-card:hover { border-left-color: var(--color-lavender); }
.credit-card[hidden] { display: none; }

/* Group headings within the credits list */
.credits-group {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--color-gold);
  letter-spacing: 0.04em;
  text-align: center;
  margin: 3.5rem 0 0;
  padding-bottom: 0.6rem;
}
.credits-group::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  background: var(--color-gold);
  margin: 0.8rem auto 0;
}
.credits-group:first-child { margin-top: 0; }
.credits-group[hidden] { display: none; }

/* Static (non-expandable) credits — TV, concerts, recordings */
.credit-card--static .credit-card__head { cursor: default; }
.credit-card--static:hover { border-left-color: var(--color-gold); }
.credit-card[data-category="recordings"] {
  border-color: rgba(201, 168, 76, 0.13);
  border-left-width: 2px;
}
.credit-card[data-category="recordings"] .credit-card__head {
  grid-template-columns: 4.5rem 92px minmax(0, 1fr);
  gap: 1.15rem;
  padding: 0.85rem 1rem;
}
.credit-card[data-category="recordings"] .credit-card__year {
  min-width: 0;
}
.credit-card[data-category="recordings"] .credit-card__cover {
  width: 92px;
  height: 92px;
  flex-basis: 92px;
}
.credit-card--with-cover {
  border-color: rgba(201, 168, 76, 0.13);
  border-left-width: 2px;
}
.credit-card--with-cover .credit-card__head {
  grid-template-columns: 4.5rem 92px minmax(0, 1fr);
  gap: 1.15rem;
  padding: 0.85rem 1rem;
}
.credit-card--with-cover .credit-card__year {
  min-width: 0;
}
.credit-card--with-cover .credit-card__cover {
  width: 92px;
  height: 92px;
  flex-basis: 92px;
}

/* ==========================================================================
   SHOWS — editorial feature rows (career retrospective)
   ========================================================================== */
.shows-lede {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  text-align: center;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  line-height: 1.4;
  color: var(--color-text);
}

.show-feature {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.show-feature[hidden] { display: none; }
/* Feathered, centred divider between consecutive show listings — reuses the
   homepage gold-rule gradient (transparent → gold → transparent), constrained
   to ~25% width and centred instead of running full-width edge-to-edge.
   Absolutely positioned so it stays out of the 2-column grid flow. */
.show-feature + .show-feature::before {
  content: "";
  position: absolute;
  /* nudge up by half the .credits-list flex gap (0.85rem) so the line sits
     centred in the whitespace between two listings, not biased toward the top */
  top: -0.425rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background-image: linear-gradient(90deg, transparent 0%, rgba(201, 168, 76, 0.85) 50%, transparent 100%);
}

.show-feature__media {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
}
.show-feature__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.55);
}
.show-feature__photo--poster-only {
  aspect-ratio: auto;
  object-fit: contain;
}
.show-feature__poster {
  position: absolute;
  bottom: -40px;
  right: -34px;
  width: 44%;
  max-width: 158px;
  border: 3px solid var(--color-bg);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.8);
  transform: rotate(-20deg);
  transform-origin: bottom right;
}

.show-feature__content { align-self: center; }
.show-feature__year {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--color-gold);
}
.show-feature__title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  line-height: 1.08;
  color: var(--color-text);
  margin: 0.15rem 0 0.5rem;
}
.show-feature__title .star { font-size: 0.7em; vertical-align: middle; }
.show-feature__role {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--color-gold);
  margin: 0 0 0.25rem;
}
.show-feature__venue {
  color: var(--color-muted);
  font-size: var(--fs-small);
  letter-spacing: 0.04em;
  margin: 0;
}
/* Prominent "Now Playing" badge — replaces the date as the lead element */
/* NOW PLAYING: a small status pill (matches the Olivier pill--inline style),
   not a CTA/button — no shimmer, no oversized padding. */
.show-feature__badge {
  margin: 0 0 0.85rem;
}
.show-feature__cta { margin-top: 1.5rem; }
/* Olivier Award badge — aligned to the left edge of the role/venue text */
.show-feature__award { margin: 0.9rem 0; }
.show-feature__award .pill--inline { margin-left: 0; }
/* Small key near the filter buttons */
.filter-legend {
  text-align: center;
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  color: var(--color-muted);
  margin: -0.75rem 0 2.25rem;
}
.filter-legend .star--nom { margin-right: 0.3rem; }
.show-feature__quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.38;
  color: var(--color-gold);
  margin: 1.5rem 0 0.5rem;
  padding-left: 1.4rem;
  border-left: 2px solid rgba(201, 168, 76, 0.45);
}
.show-feature__cite {
  display: block;
  font-style: normal;
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
}
.show-feature__note {
  font-style: italic;
  color: var(--color-text);
  margin: 1.25rem 0 0;
}
.show-feature__muted { color: var(--color-muted); font-style: italic; margin: 1.25rem 0 0; }
.show-feature .credit-timeline { margin-top: 1.5rem; }
.show-feature .credit-recording { margin-top: 0.75rem; }
.show-feature .pill--inline { vertical-align: middle; }

.credit-card__head {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  background: transparent;
  border: none;
  color: inherit;
  text-align: left;
  font-family: var(--font-body);
  padding: 1.1rem 1.25rem;
  cursor: pointer;
}
.credit-card__year {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-gold);
  white-space: nowrap;
  min-width: 5.5rem;
}
.credit-card__info { display: flex; flex-direction: column; gap: 0.15rem; }
.credit-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text);
  line-height: 1.15;
}
.credit-card__cover {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  object-fit: cover;
  border: 1px solid rgba(201, 168, 76, 0.35);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}
.credit-card__version {
  color: var(--color-muted);
  font-size: var(--fs-small);
}
.credit-card__role {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--color-gold);
  font-size: 1.05rem;
}
.credit-card__venue { color: var(--color-muted); font-size: var(--fs-small); }

.credit-card__toggle {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.credit-card__toggle::before,
.credit-card__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-gold);
  transition: transform var(--transition), opacity var(--transition);
}
.credit-card__toggle::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.credit-card__toggle::after { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.credit-card__head[aria-expanded="true"] .credit-card__toggle::after { opacity: 0; }

.credit-card__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0 1.25rem 1.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  margin-top: 0;
  padding-top: 1.25rem;
}
.credit-card__body[hidden] { display: none; }
.credit-card__poster {
  max-width: 120px;
  width: 100%;
  display: block;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}
.credit-card__media {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}
.credit-card__still {
  max-width: 240px;
  width: 100%;
  display: block;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}
.credit-card__media .credit-card__poster { max-width: 110px; }
.credit-card__detail { flex: 1; min-width: 0; }
.credit-card__detail > *:first-child { margin-top: 0; }
.credit-card__detail > *:last-child { margin-bottom: 0; }
.credit-card__muted { color: var(--color-muted); font-style: italic; }

.credit-quote {
  margin: 0 0 0.4rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.35;
  color: var(--color-gold);
}
.credit-cite {
  display: block;
  font-style: normal;
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
}
.credit-recording {
  display: inline-block;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.credit-timeline {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  border-left: 1px solid rgba(201, 168, 76, 0.3);
}
.credit-timeline li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.25rem;
  font-size: var(--fs-small);
}
.credit-timeline li::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 0.85rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-gold);
}
.credit-timeline__year { color: var(--color-gold); font-family: var(--font-heading); font-size: 1.05rem; margin-right: 0.5rem; }
.credit-note { font-style: italic; color: var(--color-text); margin: 0 0 1.25rem; }

/* Olivier stars */
.star { color: var(--color-gold); margin-left: 0.3rem; font-size: 0.9em; }
.star--win { color: var(--color-gold); }
.star--nom { color: var(--color-gold); opacity: 0.95; }

/* ==========================================================================
   PHOTO GALLERY page
   ========================================================================== */
.photo-gallery-section {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
}
.photo-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  align-items: flex-start;
}
.photo-gallery + .photo-gallery {
  margin-top: clamp(1.25rem, 3vw, 2rem);
}
.photo-card {
  flex: 0 1 100%;
  margin: 0;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(201, 168, 76, 0.18);
}
.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-card--portrait img {
  aspect-ratio: 3 / 4;
}
.photo-card--landscape img {
  aspect-ratio: 3 / 2;
}
.photo-card figcaption {
  padding: 0.9rem 1rem 1rem;
}
.photo-card figcaption strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-gold);
  line-height: 1.15;
}
.photo-card figcaption span {
  display: block;
  color: var(--color-muted);
  font-size: var(--fs-small);
  line-height: 1.45;
}

/* ==========================================================================
   BOOK page
   ========================================================================== */
.book-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.book-aside { text-align: center; }
.book-aside__cover {
  width: 100%;
  max-width: 320px;
  display: block;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--color-lavender);
  box-shadow: var(--shadow-card);
}
.book-aside__btn { display: block; max-width: 320px; margin: 0 auto; }
.book-intro-section { padding-bottom: clamp(1.75rem, 4vw, 3rem); }
.book-body h2 { font-size: var(--fs-h2); color: var(--color-gold); }
.book-body { max-width: 850px; }
.book-body__subhead {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--color-lavender);
  margin-bottom: 1.5rem;
}
.book-body__lead { font-weight: 600; }
.book-body__avail {
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.book-press-section {
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}
.book-press {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 980px;
  margin-inline: auto;
}
.book-press .press-quote { margin: 0; }
.book-press .press-quote blockquote {
  font-size: clamp(1.45rem, 3vw, 2rem);
}
.book-press .press-quote:nth-child(2) blockquote {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}
.book-events-section {
  padding-top: 0;
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}
.book-events-section .container {
  max-width: 1180px;
}
.book-events__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  text-align: left;
}
.book-events {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}
.book-event {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 1.15rem;
  align-items: center;
  padding: 0.9rem;
  border: 1px solid rgba(201, 168, 76, 0.22);
  background: rgba(255, 255, 255, 0.025);
}
.book-event__image {
  width: 116px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(191, 161, 214, 0.55);
}
.book-event__body h3 {
  margin: 0 0 0.35rem;
  color: var(--color-gold);
  font-size: clamp(1.35rem, 3vw, 1.7rem);
}
.book-event__body p {
  margin-bottom: 0.85rem;
  color: var(--color-text);
}
.book-event__meta {
  margin: 0 0 0.25rem !important;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-lavender) !important;
}
.book-event__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.book-event__links .btn {
  padding: 0.55rem 0.95rem;
  font-size: var(--fs-xs);
}

/* ==========================================================================
   MUSIC page
   ========================================================================== */
.album-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
.album-card {
  background: var(--color-surface);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-top: 3px solid var(--color-gold);
  padding: 1.25rem;
  text-align: center;
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.album-card__art {
  width: 100%;
  display: block;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-card);
}
.album-card__title { font-size: 1.1rem; color: var(--color-text); margin: 0 0 0.2rem; }
.album-card__year { color: var(--color-gold); font-family: var(--font-heading); font-size: 1.1rem; margin: 0 0 1rem; }
/* Cast recordings: Show title / Version (Year) / Role */
.album-card__version { color: var(--color-muted); font-size: var(--fs-small); margin: 0 0 0.15rem; }
.album-card__role { color: var(--color-gold); font-family: var(--font-heading); font-style: italic; font-size: 1.05rem; margin: 0 0 1rem; }
.album-card__links { display: flex; flex-direction: column; gap: 0.5rem; margin-top: auto; }
.album-card__links .btn { font-size: var(--fs-xs); padding: 0.65rem 1rem; }
.album-note {
  text-align: center;
  color: var(--color-muted);
  font-size: var(--fs-small);
  margin-top: 2rem;
}

.cast-list { list-style: none; margin: 0; padding: 0; }
.cast-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.cast-item__info { display: flex; flex-direction: column; gap: 0.15rem; }
.cast-item__title { font-family: var(--font-heading); font-size: 1.35rem; color: var(--color-text); }
.cast-item__meta { color: var(--color-muted); font-size: var(--fs-small); }
.cast-item .btn { font-size: var(--fs-xs); padding: 0.55rem 1.1rem; white-space: nowrap; }

/* ==========================================================================
   Cookie consent
   ========================================================================== */
:root {
  --cc-bg: rgba(10, 10, 10, 0.98);
  --cc-panel: #141414;
  --cc-text: #f6f1e7;
  --cc-muted: #b9b2a4;
  --cc-accent: var(--color-gold);
  --cc-border: rgba(204, 166, 73, 0.38);
  --cc-focus: #c9a6dd;
}

.cookie-consent,
.cookie-settings-button,
.cookie-modal-backdrop,
.cookie-modal {
  z-index: 9999;
}

.cookie-consent[hidden],
.cookie-settings-button[hidden],
.cookie-modal-backdrop[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0), rgba(10, 10, 10, 0.9) 18%);
}

.cookie-consent__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem;
  border: 1px solid var(--cc-border);
  background: var(--cc-bg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.38);
}

.cookie-consent__copy {
  max-width: 680px;
}

.cookie-consent__copy h2,
.cookie-modal h2 {
  margin: 0 0 0.25rem;
  color: var(--cc-text);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.cookie-consent__copy p,
.cookie-modal p {
  margin: 0;
  color: var(--cc-muted);
  font-size: var(--fs-small);
}

.cookie-consent__actions,
.cookie-modal__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cookie-btn,
.cookie-settings-button,
.cookie-modal__close {
  border: 1px solid var(--cc-border);
  background: transparent;
  color: var(--cc-text);
  cursor: pointer;
  font: inherit;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-btn {
  min-height: 2.9rem;
  min-width: 8.75rem;
  padding: 0.7rem 1rem;
  font-size: var(--fs-xs);
  font-weight: 700;
}

.cookie-btn--strong {
  background: rgba(204, 166, 73, 0.11);
  color: var(--cc-accent);
}

.cookie-btn--quiet {
  color: var(--cc-text);
}

.cookie-btn:hover,
.cookie-settings-button:hover,
.cookie-modal__close:hover {
  border-color: var(--cc-accent);
  color: var(--cc-accent);
}

.cookie-btn:focus-visible,
.cookie-settings-button:focus-visible,
.cookie-modal__close:focus-visible,
.cookie-modal input:focus-visible + .cookie-modal__switch {
  outline: 3px solid var(--cc-focus);
  outline-offset: 3px;
}

.cookie-settings-button {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  min-height: 2.4rem;
  padding: 0.55rem 0.75rem;
  background: var(--cc-bg);
  border-color: rgba(204, 166, 73, 0.5);
  color: var(--cc-muted);
  font-size: 0.72rem;
}

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: min(620px, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  transform: translate(-50%, -50%);
  padding: 1.25rem;
  border: 1px solid var(--cc-border);
  background: var(--cc-panel);
  color: var(--cc-text);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

.cookie-modal-open {
  overflow: hidden;
}

.cookie-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.cookie-modal__close {
  flex: 0 0 auto;
  min-width: 2.35rem;
  min-height: 2.35rem;
  padding: 0;
  border-radius: 50%;
  font-size: 0;
}

.cookie-modal__close::before {
  content: "×";
  font-size: 1.4rem;
  line-height: 1;
}

.cookie-modal__options {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.cookie-modal__toggle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.cookie-modal__toggle-copy {
  display: grid;
  gap: 0.2rem;
}

.cookie-modal__toggle-title {
  color: var(--cc-text);
  font-weight: 700;
}

.cookie-modal__toggle-desc {
  color: var(--cc-muted);
  font-size: var(--fs-small);
}

.cookie-modal__toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-modal__switch {
  position: relative;
  width: 3.25rem;
  height: 1.75rem;
  border: 1px solid var(--cc-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.cookie-modal__switch::after {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 50%;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--cc-muted);
  transform: translateY(-50%);
  transition: transform 180ms ease, background-color 180ms ease;
}

.cookie-modal__toggle input:checked + .cookie-modal__switch {
  background: rgba(204, 166, 73, 0.22);
}

.cookie-modal__toggle input:checked + .cookie-modal__switch::after {
  background: var(--cc-accent);
  transform: translate(1.45rem, -50%);
}

.cookie-modal__toggle input:disabled + .cookie-modal__switch {
  opacity: 0.65;
}

/* ==========================================================================
   RESPONSIVE — new components
   ========================================================================== */
@media (max-width: 640px) {
  .cookie-consent__inner {
    align-items: stretch;
    flex-direction: column;
  }
  .cookie-consent__actions,
  .cookie-modal__actions {
    justify-content: stretch;
  }
  .cookie-btn {
    flex: 1 1 100%;
    width: 100%;
  }
  .cookie-settings-button {
    left: 0.75rem;
    bottom: 0.75rem;
  }
  .newsletter-slideout {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    width: auto;
  }
  .newsletter-slideout form {
    grid-template-columns: 1fr;
  }
  .newsletter-slideout .btn {
    width: 100%;
  }
  .credit-card[data-category="recordings"] .credit-card__head {
    grid-template-columns: 3.6rem 76px minmax(0, 1fr);
    gap: 0.8rem;
    padding: 0.8rem;
  }
  .credit-card[data-category="recordings"] .credit-card__cover {
    width: 76px;
    height: 76px;
    flex-basis: 76px;
  }
  .credit-card--with-cover .credit-card__head {
    grid-template-columns: 3.6rem 76px minmax(0, 1fr);
    gap: 0.8rem;
    padding: 0.8rem;
  }
  .credit-card--with-cover .credit-card__cover {
    width: 76px;
    height: 76px;
    flex-basis: 76px;
  }
}
@media (min-width: 768px) {
  .stat-bar__grid { grid-template-columns: repeat(4, 1fr); }
  .stat-bar__grid--three { grid-template-columns: repeat(3, 1fr); }

  .book-promo__inner { flex-direction: row; text-align: left; align-items: center; gap: 3.5rem; }
  .book-promo__cover { flex-shrink: 0; }

  .press-strip__grid { grid-template-columns: 1fr 1fr; }

  .bio-grid { grid-template-columns: 55% 45%; gap: 3.5rem; }

  .credit-card__body { flex-direction: row; align-items: flex-start; gap: 2.5rem; }
  .credit-card__detail { order: 0; }
  .credit-card__media { order: 1; flex-direction: row-reverse; align-items: flex-start; gap: 1rem; }

  .show-feature { grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
  .show-feature__media { margin-inline: 0; justify-self: start; }
  .show-feature:nth-of-type(even) .show-feature__media { order: 2; justify-self: end; }
  .show-feature:nth-of-type(even) .show-feature__poster {
    right: auto; left: -34px;
    transform: rotate(20deg);
    transform-origin: bottom left;
  }

  .photo-card { flex-basis: calc((100% - 1.25rem) / 2); }

  .book-grid { grid-template-columns: 320px 1fr; align-items: start; }
  .book-aside { position: sticky; top: calc(var(--header-h-scrolled) + 1.5rem); }
  .book-press { grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr); align-items: center; }
  .book-events { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .album-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
  .photo-card { flex-basis: calc((100% - 2.5rem) / 3); }
  .album-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .newsletter-slideout {
    transition: none;
  }
}
