:root {
  --ink: #091f1d;
  --green-deep: #0f342f;
  --green: #1f3a2b;
  --olive: #2e3f27;
  --purple: #37243b;
  --burgundy: #641729;
  --red: #7b1414;
  --rust: #8a2c19;
  --orange: #b46835;
  --gold: #e2ae65;
  --gold-muted: #c58f54;
  --cream: #f2dfbd;
  --header-height: 78px;
  --max-width: 1180px;
  --page-gutter: clamp(1rem, 3vw, 2.5rem);
  --display-font: "Cinzel", Georgia, serif;
  --body-font: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  position: relative;
  min-width: 0;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--gold);
  background: var(--ink);
  font-family: var(--body-font);
  font-size: 1.05rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before,
body::after {
  content: "";
  position: absolute;
  z-index: 9999;
  pointer-events: none;
}

body::before {
  inset: 8px;
  border: 1px solid rgba(226, 174, 101, 0.72);
}

body::after {
  inset: 13px;
  border: 1px solid rgba(138, 44, 25, 0.58);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--ink);
  background: var(--gold);
}

/* Shared header */
.site-header {
  position: relative;
  z-index: 50;
  min-height: var(--header-height);
  padding: 1.15rem max(var(--page-gutter), 1.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(9, 31, 29, 0.96);
  border-bottom: 1px solid rgba(226, 174, 101, 0.48);
  box-shadow:
    0 4px 0 -3px rgba(138, 44, 25, 0.9),
    0 7px 0 -6px rgba(226, 174, 101, 0.38);
}

.site-header::after {
  content: "◆";
  position: absolute;
  left: 50%;
  bottom: -0.48rem;
  transform: translateX(-50%);
  padding: 0 0.6rem;
  color: var(--rust);
  background: var(--ink);
  font-size: 0.66rem;
  line-height: 1;
}

.site-logo,
.site-nav,
.eyebrow,
.section-kicker,
.hero-link,
.show-ticket-button,
.show-free-badge,
.press-button {
  font-family: var(--display-font);
}

.site-logo {
  flex: 0 0 auto;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: clamp(0.8rem, 2.6vw, 1.65rem);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 0.35rem 0;
  color: var(--gold-muted);
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--gold);
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"],
.site-nav a.active {
  color: var(--gold);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

/* Shared footer */
.site-footer {
  position: relative;
  padding: 2rem max(var(--page-gutter), 1.5rem);
  color: var(--gold-muted);
  border-top: 1px solid rgba(226, 174, 101, 0.5);
  box-shadow:
    0 -4px 0 -3px rgba(138, 44, 25, 0.75),
    0 -7px 0 -6px rgba(226, 174, 101, 0.35);
  font-family: var(--display-font);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

/* Home */
.home-page {
  background:
    radial-gradient(circle at 84% 18%, rgba(100, 23, 41, 0.14), transparent 32rem),
    linear-gradient(145deg, #091f1d 0%, #0d2925 52%, #091f1d 100%);
}

.hero {
  width: min(calc(100% - (2 * var(--page-gutter))), var(--max-width));
  min-height: calc(100svh - var(--header-height));
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6.5rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 5.25rem);
}

.hero-image-wrap {
  position: relative;
  min-width: 0;
  padding: clamp(0.55rem, 1.5vw, 1rem);
  background: var(--green-deep);
  border: 1px solid rgba(226, 174, 101, 0.78);
  outline: 1px solid rgba(138, 44, 25, 0.72);
  outline-offset: 7px;
  box-shadow:
    0 0 0 3px var(--ink),
    0 0 0 4px rgba(226, 174, 101, 0.28),
    0 24px 50px rgba(0, 0, 0, 0.38);
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0.55rem;
  z-index: 2;
  border: 1px solid rgba(226, 174, 101, 0.34);
  pointer-events: none;
}

.hero-image-wrap::after {
  content: "◆";
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: -1.08rem;
  transform: translateX(-50%);
  padding: 0 0.52rem;
  color: var(--rust);
  background: var(--ink);
  font-size: 0.75rem;
  line-height: 1;
}

.hero-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hero-content {
  position: relative;
  min-width: 0;
  padding: clamp(1.5rem, 4vw, 2.25rem) 0;
}

.hero-content::before,
.hero-content::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  border-top: 1px solid rgba(226, 174, 101, 0.68);
  border-bottom: 1px solid rgba(138, 44, 25, 0.76);
}

.hero-content::before {
  top: 0;
}

.hero-content::after {
  bottom: 0;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--orange);
  font-size: clamp(0.72rem, 1.2vw, 0.86rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-page h1 {
  margin: 0;
  max-width: 100%;
  font-family: var(--display-font);
  font-size: clamp(3.9rem, 8.4vw, 8.25rem);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.055em;
  overflow-wrap: break-word;
  text-transform: uppercase;
  text-shadow:
    2px 2px 0 rgba(138, 44, 25, 0.62),
    4px 4px 0 rgba(55, 36, 59, 0.45);
}

.hero-subtitle-script {
  margin: clamp(1rem, 3vw, 1.6rem) 0 0;
  font-family: "Herr Von Muellerhoff", cursive;
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 0.95;
}

.hero-sub-subtitle {
  max-width: 36rem;
  margin: 0.85rem 0 0;
  color: var(--gold-muted);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.5;
  letter-spacing: 0.055em;
}

.hero-links {
  margin-top: clamp(1.5rem, 4vw, 2.35rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-link {
  position: relative;
  min-width: 0;
  padding: 0.78rem 1rem;
  color: var(--gold);
  border: 1px solid var(--gold);
  box-shadow:
    inset 0 0 0 3px var(--ink),
    inset 0 0 0 4px rgba(180, 104, 53, 0.68);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.hero-link:hover,
.hero-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(180, 104, 53, 0.18);
  box-shadow:
    inset 0 0 0 3px var(--ink),
    inset 0 0 0 4px rgba(226, 174, 101, 0.86),
    0 7px 18px rgba(0, 0, 0, 0.28);
}

.about-photo {
  min-height: 78vh;
  background-image: url("../photos/Fox_October68.JPG");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top: 12px solid var(--ink);
  border-bottom: 12px solid var(--ink);
  box-shadow:
    inset 0 3px 0 rgba(226, 174, 101, 0.66),
    inset 0 -3px 0 rgba(226, 174, 101, 0.66),
    inset 0 6px 0 rgba(138, 44, 25, 0.56),
    inset 0 -6px 0 rgba(138, 44, 25, 0.56);
}

.about-section {
  padding: clamp(3rem, 7vw, 5rem) var(--page-gutter) clamp(4rem, 9vw, 6rem);
  display: flex;
  justify-content: center;
}

.about-content {
  position: relative;
  width: min(740px, 100%);
  padding: clamp(2rem, 5vw, 3rem) clamp(1.2rem, 5vw, 2.5rem);
  text-align: center;
  border: 1px solid rgba(226, 174, 101, 0.52);
  outline: 1px solid rgba(138, 44, 25, 0.58);
  outline-offset: 7px;
  background:
    linear-gradient(135deg, rgba(226, 174, 101, 0.025), transparent 40%, rgba(138, 44, 25, 0.04));
}

.about-content::before,
.about-content::after {
  content: "◆";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 0.7rem;
  color: var(--rust);
  background: var(--ink);
  font-family: var(--display-font);
  font-size: 1.05rem;
  line-height: 1;
}

.about-content::before {
  top: -0.66rem;
}

.about-content::after {
  bottom: -0.66rem;
}

.about-content h2 {
  margin: 0 0 1.6rem;
  font-family: var(--display-font);
  font-size: clamp(2rem, 6vw, 4.4rem);
  font-weight: 600;
  line-height: 1.05;
}

.about-content h2::before,
.about-content h2::after {
  content: "—";
  display: inline-block;
  margin: 0 0.5rem;
  color: var(--rust);
  font-size: 0.38em;
  vertical-align: middle;
}

.about-content p {
  margin: 0 0 1.25rem;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.7;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-scroll-link {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 0.7rem;
  transform: translateX(-50%);
  padding: 0.28rem 0.6rem;
  color: var(--gold);
  background: rgba(9, 31, 29, 0.86);
  font-family: var(--display-font);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.about-scroll-link.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Shows */
.shows-page {
  color: var(--cream);
  background:
    radial-gradient(circle at 12% 6%, rgba(226, 174, 101, 0.15), transparent 30rem),
    radial-gradient(circle at 86% 35%, rgba(55, 36, 59, 0.24), transparent 30rem),
    linear-gradient(145deg, #2b1113 0%, #160d0d 55%, #240d12 100%);
}

.shows-page .site-header {
  background: rgba(22, 13, 13, 0.96);
}

.shows-page .site-header::after {
  background: #160d0d;
}

.shows-main {
  width: min(calc(100% - (2 * var(--page-gutter))), 1120px);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(5rem, 10vw, 7rem);
}

.shows-hero {
  position: relative;
  max-width: 780px;
  margin: 0 0 clamp(3.5rem, 7vw, 5rem);
  padding: clamp(1.5rem, 4vw, 2.4rem) 0;
}

.shows-hero::before,
.shows-hero::after {
  content: "";
  position: absolute;
  left: 0;
  width: min(100%, 760px);
  height: 4px;
  border-top: 1px solid rgba(226, 174, 101, 0.68);
  border-bottom: 1px solid rgba(100, 23, 41, 0.95);
}

.shows-hero::before {
  top: 0;
}

.shows-hero::after {
  bottom: 0;
}

.shows-hero h1 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 rgba(100, 23, 41, 0.72);
}

.shows-intro {
  max-width: 540px;
  margin: 1.2rem 0 0;
  color: rgba(242, 223, 189, 0.78);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  line-height: 1.55;
}

.shows-section {
  margin-top: clamp(3.5rem, 8vw, 5.5rem);
}

.shows-page .section-heading {
  position: relative;
  margin-bottom: 1.35rem;
  padding: 0 0 0.9rem;
  border-bottom: 1px solid rgba(242, 223, 189, 0.3);
}

.shows-page .section-heading::after {
  content: "◆";
  position: absolute;
  right: 0;
  bottom: -0.43rem;
  padding-left: 0.55rem;
  color: var(--orange);
  background: #160d0d;
  font-size: 0.63rem;
  line-height: 1;
}

.shows-page .section-heading h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(1.65rem, 4.5vw, 2.9rem);
  font-weight: 600;
  line-height: 1.05;
}

.shows-list {
  display: grid;
  gap: 0.85rem;
}

.show-row {
  position: relative;
  min-width: 0;
  padding: 1.15rem 1.25rem;
  display: grid;
  grid-template-columns: minmax(9.5rem, 1.05fr) minmax(0, 1.65fr) minmax(0, 1.8fr) auto;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.6rem);
  border: 1px solid rgba(242, 223, 189, 0.28);
  outline: 1px solid rgba(100, 23, 41, 0.62);
  outline-offset: -5px;
  background:
    linear-gradient(120deg, rgba(242, 223, 189, 0.075), rgba(100, 23, 41, 0.1));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.show-row::before {
  content: "◆";
  position: absolute;
  top: 50%;
  left: -0.35rem;
  transform: translateY(-50%);
  color: var(--orange);
  background: #1a0d0d;
  font-size: 0.58rem;
  line-height: 1;
}

.show-row-past {
  grid-template-columns: minmax(9.5rem, 1.05fr) minmax(0, 1.65fr) minmax(0, 1.8fr);
  opacity: 0.72;
}

.show-date,
.show-title,
.show-address {
  min-width: 0;
  overflow-wrap: anywhere;
}

.show-date {
  color: var(--gold);
  font-family: var(--display-font);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  line-height: 1.45;
}

.show-title {
  font-size: clamp(1.12rem, 1.9vw, 1.3rem);
  font-weight: 600;
  line-height: 1.25;
}

.show-address {
  color: rgba(242, 223, 189, 0.76);
  font-size: 1.02rem;
  line-height: 1.4;
}

.show-date-line,
.show-time-line {
  display: block;
}

.show-time-line {
  margin-top: 0.25rem;
  color: rgba(242, 223, 189, 0.76);
  font-family: var(--body-font);
  font-size: 1rem;
  letter-spacing: 0;
}

.show-action {
  display: flex;
  justify-content: flex-end;
}

.show-ticket-button,
.show-free-badge {
  min-height: 42px;
  padding: 0.7rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  box-shadow: inset 0 0 0 3px #1a0d0d, inset 0 0 0 4px rgba(180, 104, 53, 0.75);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.show-ticket-button {
  color: #1a0d0d;
  background: var(--gold);
  box-shadow: inset 0 0 0 3px var(--gold), inset 0 0 0 4px #1a0d0d;
  transition: background 160ms ease, transform 160ms ease;
}

.show-ticket-button:hover,
.show-ticket-button:focus-visible {
  transform: translateY(-2px);
  background: #efc47e;
}

.show-free-badge {
  color: var(--cream);
  background: transparent;
}

.empty-shows-message {
  margin: 0;
  padding: 1.4rem;
  color: rgba(242, 223, 189, 0.72);
  border: 1px dashed rgba(242, 223, 189, 0.34);
  font-size: 1.1rem;
}

/* Press */
.press-page {
  color: var(--gold);
  background:
    radial-gradient(circle at 82% 12%, rgba(100, 23, 41, 0.17), transparent 30rem),
    radial-gradient(circle at 10% 58%, rgba(46, 63, 39, 0.2), transparent 34rem),
    linear-gradient(145deg, #091f1d 0%, #0c2925 55%, #091f1d 100%);
}

.press-main {
  width: min(calc(100% - (2 * var(--page-gutter))), 1120px);
  margin: 0 auto;
  padding: 0 0 clamp(5rem, 10vw, 7rem);
}

.press-hero {
  position: relative;
  min-height: min(70vh, 720px);
  padding: clamp(4.5rem, 10vw, 8rem) clamp(0rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid rgba(226, 174, 101, 0.46);
}

.press-hero::before,
.press-hero::after {
  content: "◆";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 0.7rem;
  color: var(--rust);
  background: #0a211f;
  font-size: 0.75rem;
  line-height: 1;
}

.press-hero::before {
  bottom: -0.45rem;
}

.press-hero::after {
  bottom: -0.45rem;
  transform: translateX(-50%) rotate(45deg);
  opacity: 0.32;
}

.press-kicker {
  margin: 0 0 1rem;
  color: var(--orange);
  font-family: var(--display-font);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.press-hero h1 {
  max-width: 950px;
  margin: 0 0 1.5rem;
  font-family: var(--display-font);
  font-size: clamp(3rem, 9vw, 7.4rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.045em;
  overflow-wrap: break-word;
  text-transform: uppercase;
  text-shadow:
    2px 2px 0 rgba(138, 44, 25, 0.56),
    4px 4px 0 rgba(55, 36, 59, 0.38);
}

.press-hero > p:not(.press-kicker) {
  max-width: 700px;
  margin: 0;
  color: rgba(226, 174, 101, 0.9);
  font-size: clamp(1.15rem, 2.2vw, 1.42rem);
  line-height: 1.55;
}

.press-buttons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.press-button {
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid var(--gold);
  box-shadow: inset 0 0 0 3px var(--gold), inset 0 0 0 4px var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.press-button:hover,
.press-button:focus-visible {
  transform: translateY(-2px);
  background: #efc47e;
}

.press-button.secondary {
  color: var(--gold);
  background: transparent;
  box-shadow: inset 0 0 0 3px var(--ink), inset 0 0 0 4px rgba(180, 104, 53, 0.72);
}

.press-button.secondary:hover,
.press-button.secondary:focus-visible {
  color: var(--ink);
  background: var(--gold);
}

.press-section {
  position: relative;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  border-bottom: 1px solid rgba(226, 174, 101, 0.32);
}

.press-section::after {
  content: "◆";
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  padding-left: 0.6rem;
  color: var(--rust);
  background: #0a211f;
  font-size: 0.62rem;
  line-height: 1;
}

.press-section h2 {
  margin: 0 0 1.6rem;
  font-family: var(--display-font);
  font-size: clamp(1.85rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.08;
}

.press-section p {
  margin-top: 0;
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  line-height: 1.7;
}

.press-section p:last-child {
  margin-bottom: 0;
}

.press-section-intro {
  max-width: 650px;
  margin-bottom: 1.8rem;
}

.press-bio-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.42fr);
  gap: clamp(2rem, 7vw, 5rem);
}

.press-bio-grid > div {
  position: relative;
  min-width: 0;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid rgba(226, 174, 101, 0.34);
  outline: 1px solid rgba(138, 44, 25, 0.45);
  outline-offset: -6px;
  background: rgba(226, 174, 101, 0.035);
}

.press-bio-grid > div::before {
  content: "◆";
  position: absolute;
  top: -0.38rem;
  left: 1.4rem;
  padding: 0 0.35rem;
  color: var(--rust);
  background: #0b2421;
  font-size: 0.58rem;
  line-height: 1;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.review-card {
  position: relative;
  min-width: 0;
  padding: clamp(1.4rem, 4vw, 2rem);
  border: 1px solid rgba(226, 174, 101, 0.42);
  outline: 1px solid rgba(138, 44, 25, 0.45);
  outline-offset: -6px;
  background: linear-gradient(135deg, rgba(226, 174, 101, 0.055), rgba(100, 23, 41, 0.04));
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 0.3rem;
  right: 1rem;
  color: rgba(180, 104, 53, 0.35);
  font-family: var(--body-font);
  font-size: 4.5rem;
  line-height: 1;
}

.review-card p {
  position: relative;
  margin-bottom: 1.2rem;
  font-size: clamp(1.15rem, 2vw, 1.32rem);
  font-style: italic;
}

.review-card span {
  display: block;
  color: var(--gold-muted);
  font-family: var(--display-font);
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.press-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.1rem);
}

.press-photo-grid img {
  width: 100%;
  min-width: 0;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  padding: 0.35rem;
  border: 1px solid rgba(226, 174, 101, 0.55);
  outline: 1px solid rgba(138, 44, 25, 0.5);
  outline-offset: -5px;
  background: var(--gold);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.press-contact a {
  display: inline-block;
  max-width: 100%;
  color: var(--gold);
  font-weight: 600;
  overflow-wrap: anywhere;
  border-bottom: 1px solid rgba(226, 174, 101, 0.62);
}

/* Tablet */
@media (max-width: 900px) {
  .hero {
    gap: 2.5rem;
  }

  .home-page h1 {
    font-size: clamp(3.4rem, 9.5vw, 6.5rem);
  }

  .show-row,
  .show-row-past {
    grid-template-columns: minmax(8.5rem, 1fr) minmax(0, 1.45fr) minmax(0, 1.45fr);
  }

  .show-row:not(.show-row-past) .show-action {
    grid-column: 2 / -1;
    justify-content: flex-start;
  }

  .press-bio-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .press-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 680px) {
  :root {
    --header-height: auto;
    --page-gutter: 1rem;
  }

  body {
    font-size: 1rem;
  }

  body::before {
    inset: 4px;
  }

  body::after {
    inset: 8px;
  }

  .site-header {
    min-height: 0;
    padding: 1rem 1.15rem 1.1rem;
    flex-direction: column;
    justify-content: center;
    gap: 0.85rem;
    text-align: center;
  }

  .site-header::after {
    bottom: -0.43rem;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
    gap: 0.55rem 1rem;
    font-size: 0.68rem;
  }

  .site-nav a {
    padding: 0.25rem 0;
  }

  .hero {
    min-height: 0;
    padding: 2.6rem 0 4rem;
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .hero-image-wrap {
    width: calc(100% - 0.8rem);
    margin: 0 auto;
    outline-offset: 5px;
  }

  .hero-content {
    padding: 1.6rem 0;
    text-align: center;
  }

  .home-page h1 {
    font-size: clamp(3rem, 17vw, 5.25rem);
    line-height: 0.92;
    letter-spacing: -0.045em;
  }

  .hero-subtitle-script {
    font-size: clamp(2.5rem, 13vw, 3.8rem);
  }

  #hero-sub-subtitle {
    margin-right: auto;
    margin-left: auto;
    font-size: 0.97rem;
    letter-spacing: 0.025em;
  }

  .hero-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }

  .hero-link {
    width: 100%;
    padding: 0.78rem 0.55rem;
    font-size: 0.65rem;
  }

  .about-photo {
    min-height: 52vh;
    background-position: center;
    border-top-width: 9px;
    border-bottom-width: 9px;
  }

  .about-section {
    padding-top: 3.4rem;
  }

  .about-content {
    padding: 2rem 1rem;
    outline-offset: 4px;
  }

  .about-content h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .about-content h2::before,
  .about-content h2::after {
    margin: 0 0.25rem;
  }

  .about-content p {
    font-size: 1.02rem;
    line-height: 1.62;
  }

  .shows-main {
    padding-top: 3rem;
  }

  .shows-hero {
    margin-bottom: 3.5rem;
    text-align: center;
  }

  .shows-hero::before,
  .shows-hero::after {
    width: 100%;
  }

  .shows-hero h1 {
    font-size: clamp(3.2rem, 18vw, 5.5rem);
  }

  .shows-intro {
    margin-right: auto;
    margin-left: auto;
  }

  .shows-page .section-heading {
    text-align: center;
  }

  .shows-page .section-heading::after {
    right: 50%;
    transform: translateX(50%);
    padding: 0 0.45rem;
  }

  .show-row,
  .show-row-past {
    padding: 1.25rem 1rem;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    text-align: center;
  }

  .show-row:not(.show-row-past) .show-action {
    grid-column: auto;
  }

  .show-row::before {
    top: -0.33rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 0.35rem;
  }

  .show-action {
    justify-content: center;
    margin-top: 0.3rem;
  }

  .show-ticket-button,
  .show-free-badge {
    width: min(100%, 15rem);
    white-space: normal;
  }

  .press-hero {
    min-height: 0;
    padding: 4.5rem 0 4rem;
    text-align: center;
  }

  .press-hero h1 {
    font-size: clamp(2.7rem, 15vw, 5rem);
    line-height: 0.96;
  }

  .press-hero > p:not(.press-kicker) {
    margin-right: auto;
    margin-left: auto;
    font-size: 1.1rem;
  }

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

  .press-button {
    width: 100%;
  }

  .press-section {
    padding: 3.6rem 0;
  }

  .press-section h2 {
    text-align: center;
  }

  .press-bio-grid > div {
    padding: 1.5rem 1rem;
  }

  .review-grid,
  .press-photo-grid {
    grid-template-columns: 1fr;
  }

  .press-photo-grid img {
    aspect-ratio: 16 / 11;
  }

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

  .site-footer {
    padding: 1.7rem 1rem;
  }
}

@media (max-width: 380px) {
  .site-nav {
    gap: 0.45rem 0.75rem;
    font-size: 0.62rem;
  }

  .hero-links {
    grid-template-columns: 1fr;
  }

  .home-page h1 {
    font-size: clamp(2.75rem, 16vw, 4.4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}