:root {
  --orange: #e45a05;
  --orange-deep: #b93608;
  --gold: #ffad12;
  --gold-soft: #ffc64f;
  --olive: #43472a;
  --olive-dark: #252816;
  --cream: #fff7e6;
  --cream-deep: #f5e7c9;
  --white: #fffdf7;
  --ink: #232315;
  --muted: #676550;
  --line: rgba(67, 71, 42, 0.24);
  --shadow: 0 24px 60px rgba(54, 37, 12, 0.18);
  --display: "Gotham Bold", Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body: "Gill Sans", "Gill Sans MT", Calibri, Arial, sans-serif;
  --max-width: 1240px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

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

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

button {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--olive-dark);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
  min-width: 0;
}

.section {
  padding: clamp(76px, 9vw, 128px) 0;
}

.section--olive {
  position: relative;
  overflow: hidden;
  background: var(--olive-dark);
  color: var(--cream);
}

.section--olive::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: radial-gradient(circle, rgba(255, 247, 230, 0.56) 0 0.7px, transparent 0.9px);
  background-size: 5px 5px;
}

.section--orange {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 30%, rgba(255, 198, 79, 0.62), transparent 35%),
    linear-gradient(135deg, var(--orange-deep), var(--orange) 48%, var(--gold));
  color: var(--white);
}

/* Orange headline artwork: desktop/default controls */
.intro-orangutan-layer {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 1;
  pointer-events: none;
}

.intro-orangutan {
  display: block;
  width: 100%;
  height: auto;
  filter: contrast(100%);
  opacity: 0.65;
  mix-blend-mode: multiply;
}

.section--orange::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.48) 0 0.75px, transparent 0.95px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section--olive .eyebrow,
.section--orange .eyebrow {
  color: var(--gold-soft);
}

.section-heading {
  max-width: 800px;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
  gap: clamp(32px, 6vw, 86px);
  max-width: none;
  align-items: end;
}

.section-heading h2,
.story-copy h2,
.cta-panel h2 {
  margin: 0;
  max-width: 920px;
  font-family: var(--display);
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.84;
  text-transform: uppercase;
}

.section-heading p,
.story-copy p {
  max-width: 760px;
}

.section-intro {
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.section--olive .section-intro {
  color: rgba(255, 247, 230, 0.78);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(37, 40, 22, 0.94);
  box-shadow: 0 8px 24px rgba(19, 18, 8, 0.18);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.site-logo__image {
  display: block;
  max-height: 44px;
  width: auto;
}

.site-logo__mark {
  display: grid;
  width: 42px;
  height: 42px;
  border: 3px solid currentColor;
  place-items: center;
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.site-logo__text {
  font-family: var(--display);
  font-size: 1.32rem;
  letter-spacing: -0.035em;
  line-height: 0.9;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 34px);
}

.site-nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.site-nav a:not(.header-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button,
.ticket-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  background: var(--gold);
  color: var(--olive-dark);
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta:hover,
.button:hover,
.ticket-button:not(.ticket-button--disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(41, 31, 7, 0.2);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: min(940px, 100svh);
  overflow: hidden;
  padding: 126px 0 0;
  background: url("../images/branding/Red-orange-background-opt.webp") center/cover no-repeat;
  background-color: #000;
  color: var(--white);
}

/* Hero tiger layer: desktop/default controls */
.hero-tiger-layer {
  position: absolute;
  z-index: 0;
  top: -6%;
  left: 75%;
  width: clamp(760px, 82vw, 1180px);
  opacity: 0.62;
  pointer-events: none;
  transform: translateX(-50%);
  mix-blend-mode: overlay;
}

.hero-tiger {
  display: block;
  width: 100%;
  height: auto;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(46px, 7vw, 110px);
  align-items: start;
  padding-bottom: 2rem;
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 10%;
}

.hero-headshots {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin-top: auto;
  --headshot-scale: 1;
  --headshot-offset-x: 0px;
  --headshot-offset-y: 0px;
}

.hero-headshot {
  overflow: hidden;
  border: 3px solid #494f2e;
  aspect-ratio: 4 / 6.2;
  background: #43472a;
}

.hero-headshot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: translate(var(--headshot-offset-x), var(--headshot-offset-y)) scale(var(--headshot-scale));
  transform-origin: center center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.2rem;
  padding: 0.52rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(62, 44, 13, 0.14);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-kicker::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-soft);
  content: "";
  box-shadow: 0 0 0 5px rgba(255, 198, 79, 0.18);
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5.2rem, 14vw, 11.5rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.7;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

.hero-logo {
  display: block;
  max-width: min(1136px, 100%);
  width: 100%;
  height: auto;
  margin: 0 auto 0.6rem;
}

.hero-strapline {
  display: block;
  max-width: min(1136px, 100%);
  width: min(100%, 1136px);
  margin: -1.6rem auto 0;
  padding-left: 5rem;
  transform: scale(1.355);
  transform-origin: center center;
}

.hero-summary {
  max-width: 630px;
  margin: 1.35rem 0 0;
  color: rgba(255, 253, 247, 0.88);
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button--light {
  background: var(--white);
}

.button--outline {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: var(--white);
}

.hero-art {
  position: relative;
  justify-self: end;
  width: min(100%, 500px);
  transform: rotate(1.4deg);
}

.hero-art::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 22px;
  right: -22px;
  bottom: -22px;
  left: 22px;
  border: 3px solid var(--olive);
  background: var(--gold);
}

.hero-art img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 3px solid var(--olive);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-art__label {
  position: absolute;
  right: -24px;
  bottom: 34px;
  padding: 0.55rem 0.8rem;
  background: var(--olive);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.story-copy h2 {
  font-size: clamp(3.1rem, 6vw, 6.4rem);
}

.story-copy p {
  margin: 1.2rem 0 0;
  color: #444330;
  font-size: clamp(1.03rem, 1.7vw, 1.2rem);
}

.story-copy p:first-of-type {
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 800;
}

.tour-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  min-height: 42px;
  border: 1px solid rgba(255, 247, 230, 0.28);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--olive-dark);
}

.tour-count {
  flex: 0 0 auto;
  margin: 0;
  color: rgba(255, 247, 230, 0.66);
  font-size: 0.9rem;
  font-weight: 800;
}

.tour-list {
  border-top: 1px solid rgba(255, 247, 230, 0.22);
}

.tour-row {
  display: grid;
  grid-template-columns: 76px minmax(190px, 1.1fr) 120px minmax(220px, 1fr) 150px;
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  min-height: 126px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 247, 230, 0.22);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.tour-row.is-selected {
  background: rgba(137, 133, 67, 0.24);
  box-shadow: inset 4px 0 0 var(--orange);
}

.tour-row.is-selected:not(.is-first):not(.is-last) {
  box-shadow: inset 4px 0 0 var(--orange), inset -4px 0 0 var(--orange);
}

.tour-row.is-selected.is-first {
  box-shadow: inset 4px 0 0 var(--orange), inset -4px 0 0 var(--orange), inset 0 4px 0 var(--orange);
}

.tour-row.is-selected.is-last {
  box-shadow: inset 4px 0 0 var(--orange), inset -4px 0 0 var(--orange), inset 0 -4px 0 var(--orange);
}

.tour-row.is-selected.is-first.is-last {
  box-shadow: inset 4px 0 0 var(--orange), inset -4px 0 0 var(--orange), inset 0 4px 0 var(--orange), inset 0 -4px 0 var(--orange);
}

.tour-row.is-highlighted {
  animation: tour-row-highlight 700ms ease-out both;
}

@keyframes tour-row-highlight {
  0% {
    background: rgba(255, 173, 18, 0.42);
  }
  100% {
    background: rgba(137, 133, 67, 0.24);
  }
}

.date-tile {
  display: grid;
  width: 70px;
  min-height: 78px;
  border: 2px solid var(--gold);
  place-items: center;
  padding: 6px;
  text-align: center;
}

.date-tile__weekday,
.date-tile__month {
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.date-tile__day {
  font-family: var(--display);
  font-size: 2.35rem;
  line-height: 0.9;
}

.tour-row__location,
.tour-row__details p,
.tour-row__lineup {
  margin: 0;
}

.tour-row__location {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tour-row h3 {
  margin: 0.2rem 0 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.18;
}

.tour-row__details {
  display: grid;
  gap: 6px;
  justify-items: start;
}

.block-pill {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.3rem 0.58rem;
  background: rgba(255, 247, 230, 0.1);
  color: var(--gold-soft);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tour-row__lineup {
  color: rgba(255, 247, 230, 0.72);
  font-size: 0.88rem;
  line-height: 1.35;
}

.tour-row__action {
  justify-self: end;
}

.ticket-button {
  width: 100%;
  min-width: 145px;
  padding-inline: 1rem;
  font-size: 0.86rem;
  white-space: nowrap;
  text-align: center;
}

.ticket-button--disabled {
  border: 1px solid rgba(255, 247, 230, 0.28);
  background: rgba(255, 247, 230, 0.08);
  color: rgba(255, 247, 230, 0.68);
  cursor: default;
}

.ticketmaster-booking {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid rgba(255, 247, 230, 0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 3vw, 24px);
}

.ticketmaster-label {
  margin: 0;
  color: var(--white);
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.08em;
  text-align: center;
}

.ticketmaster-logo-link {
  display: inline-block;
  text-decoration: none;
}

.ticketmaster-logo {
  display: block;
  max-width: 336px;
  width: 100%;
  height: auto;
  transition: transform 150ms ease, filter 150ms ease;
}

.ticketmaster-logo-link:hover .ticketmaster-logo,
.ticketmaster-logo-link:focus-visible .ticketmaster-logo {
  transform: scale(1.05);
}

.ticketmaster-logo-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 8px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .tour-row {
    transition: none;
  }

  .tour-row.is-highlighted {
    animation: none;
  }
}

.section--sponsors {
  padding-top: clamp(52px, 6vw, 70px);
  padding-bottom: clamp(52px, 6vw, 70px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.18);
}

.sponsor-strip {
  display: grid;
  gap: 0.9rem;
}

.sponsor-eyebrow {
  margin: 0;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2vw, 36px);
  align-items: start;
}

.sponsor {
  display: grid;
  gap: 0.5rem;
  align-content: start;
  min-width: 0;
}

.sponsor[hidden] {
  display: none;
}

.sponsor-label {
  margin: 0;
  color: var(--orange-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sponsor-copy {
  margin: 0;
  max-width: 620px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.5;
}

.sponsor-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.sponsor-logo-area {
  width: min(100%, 742px);
}

.sponsor-logo--volvo {
  width: auto;
  max-width: 100%;
  height: 65px;
  max-height: 65px;
  justify-self: start;
  margin-top: 0.2rem;
  object-fit: contain;
}

.supporter-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  width: 100%;
  margin-top: 0.25rem;
  min-width: 0;
}

.sponsor-logo--charity {
  display: block;
  width: clamp(173px, 23vw, 316px);
  max-width: 100%;
  height: auto;
  max-height: 100px;
  object-fit: contain;
}

.sponsor-logo--charity:nth-child(1) {
  width: clamp(229px, 30.5vw, 418px);
  justify-self: start;
}

.sponsor-logo--charity:nth-child(2) {
  justify-self: center;
}

.sponsor-logo--charity:nth-child(3) {
  justify-self: end;
}

@media (max-width: 900px) {
  .section--sponsors {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .sponsor-copy {
    max-width: none;
  }

  .supporter-logos {
    gap: clamp(10px, 2vw, 20px);
  }
}

@media (max-width: 700px) {
  .supporter-logos {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .supporter-logos .sponsor-logo--charity:nth-child(1),
  .supporter-logos .sponsor-logo--charity:nth-child(2),
  .supporter-logos .sponsor-logo--charity:nth-child(3) {
    justify-self: center;
  }
}

.block-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

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

.block-card {
  overflow: hidden;
  border: 2px solid var(--olive);
  background: var(--white);
  box-shadow: 9px 9px 0 rgba(67, 71, 42, 0.22);
}

.block-card__poster {
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--olive);
  background: var(--orange);
}

.block-card__image-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: clamp(12px, 2.2vw, 32px);
  background-image: url("../images/Blocks/Headshots_only/Red-orange-background.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 900px) {
  .block-card__image-shell {
    padding: clamp(10px, 2.8vw, 16px);
  }
}

@media (max-width: 600px) {
  .block-card__image-shell {
    padding: 12px;
  }
}

.block-card__image-shell img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 350ms ease;
}

.block-card:hover .block-card__image-shell img {
  transform: scale(1.025);
}

.block-card__body {
  padding: clamp(22px, 3vw, 34px);
}

.block-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  letter-spacing: -0.035em;
  line-height: 0.96;
  text-transform: uppercase;
}

.block-card__note {
  margin: 0.65rem 0 0;
  color: var(--orange-deep);
  font-size: 0.82rem;
  font-weight: 900;
}

.name-list {
  display: grid;
  gap: 0.38rem;
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
}

.name-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
}

.name-list li::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 0;
  border-bottom: 2px solid var(--orange);
  padding: 0.25rem 0;
  background: transparent;
  color: var(--olive-dark);
  cursor: pointer;
  font-weight: 900;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.artist-card {
  min-width: 0;
}

.artist-card__button {
  display: grid;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 2px solid var(--olive);
  padding: 0;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  box-shadow: 7px 7px 0 rgba(67, 71, 42, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.artist-card__button:hover,
.artist-card__button:focus-visible {
  transform: translateY(-5px);
  box-shadow: 10px 14px 0 rgba(67, 71, 42, 0.2);
}

.artist-card__image {
  display: block;
  overflow: hidden;
  width: 100%;
  border-bottom: 2px solid var(--olive);
  background: var(--cream-deep);
  height: min(500px, 40vw);
  aspect-ratio: 4 / 5;
}

.artist-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 320ms ease;
}

.artist-card__button:hover img,
.artist-card__button:focus-visible img {
  transform: scale(1.035);
}

.artist-card__copy {
  display: flex;
  min-height: 228px;
  flex-direction: column;
  padding: 22px;
}

.artist-card__name {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-transform: uppercase;
}

.artist-card__role {
  margin-top: 0.7rem;
  color: var(--orange-deep);
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1.25;
}

.artist-card__blocks {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 900;
}

.artist-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 1.2rem;
  font-size: 0.84rem;
  font-weight: 900;
}

.artist-dialog {
  width: min(calc(100% - 32px), 980px);
  max-height: min(88vh, 780px);
  overflow: auto;
  border: 3px solid var(--olive);
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 20px 20px 0 rgba(25, 27, 12, 0.38);
}

.artist-dialog::backdrop {
  background: rgba(19, 19, 8, 0.74);
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: sticky;
  z-index: 3;
  top: 16px;
  float: right;
  width: 46px;
  height: 46px;
  margin: 16px 16px -62px 0;
  border: 2px solid var(--olive);
  border-radius: 50%;
  background: var(--gold);
  color: var(--olive-dark);
  cursor: pointer;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
}

.artist-dialog__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  min-height: 630px;
}

.artist-dialog__figure {
  position: relative;
  margin: 0;
  border-right: 3px solid var(--olive);
  background: var(--olive);
}

.artist-dialog__figure img {
  width: 100%;
  height: 100%;
  min-height: 630px;
  object-fit: cover;
}

.artist-dialog__figure figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 0.35rem 0.55rem;
  background: rgba(37, 40, 22, 0.8);
  color: var(--white);
  font-size: 0.68rem;
}

.artist-dialog__copy {
  align-self: center;
  min-width: 0;
  max-width: 100%;
  padding: clamp(38px, 6vw, 72px);
}

.artist-dialog__copy > * {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.artist-dialog h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-transform: uppercase;
}

.artist-dialog__role {
  margin: 1.25rem 0 1.4rem;
  color: var(--orange-deep);
  font-weight: 900;
}

.artist-dialog__blocks {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.cta-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
  padding-bottom: 5%;
}

.cta-panel h2 {
  max-width: 920px;
}

.cta-panel p {
  max-width: 720px;
  margin: 1.3rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

.cta-panel .button {
  white-space: nowrap;
}

.site-footer {
  background: #494f2e;
  color: var(--cream);
  padding: 54px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
}

.footer-logo {
  display: block;
  width: 50%;
  height: auto;
  margin: 0;
}

.footer-strapline {
  margin: 1rem 0 0;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 800;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
}

.footer-nav a {
  color: rgba(255, 247, 230, 0.8);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-divider {
  width: 100%;
  height: 1px;
  margin-top: 22px;
  background: rgba(255, 247, 230, 0.16);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  color: rgba(255, 247, 230, 0.52);
  font-size: 0.78rem;
}

.footer-socials {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  margin-bottom: 0;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  transition: transform 150ms ease, opacity 150ms ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  transform: translateY(-1px);
}

.footer-social-icon {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(5rem, 13vw, 9rem);
  }

  .tour-row {
    grid-template-columns: 70px minmax(180px, 1fr) 110px 150px;
  }

  .tour-row__lineup {
    display: none;
  }

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

@media (max-width: 860px) {
  html {
    scroll-padding-top: 72px;
  }

  body {
    font-size: 17px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border: 2px solid var(--gold);
    padding: 12px;
    background: var(--olive-dark);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.8rem;
  }

  .header-cta {
    margin-top: 6px;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 94px;
  }

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

  .hero-copy {
    max-width: 720px;
  }

  .hero-art {
    justify-self: center;
    width: min(88%, 500px);
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-statement {
    position: static;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .block-card,
  .block-card:nth-child(4),
  .block-card:nth-child(5) {
    grid-column: span 1;
  }

  .tour-row {
    grid-template-columns: 68px minmax(0, 1fr) 145px;
    gap: 18px;
  }

  .tour-row__details {
    display: none;
  }

  .tour-row__action {
    justify-self: stretch;
  }

  .ticket-button {
    min-width: 0;
  }

  .tour-row__place,
  .tour-row__action {
    min-width: 0;
  }

  .artist-dialog__layout {
    grid-template-columns: 1fr;
  }

  .artist-dialog__figure {
    height: min(48vh, 430px);
    border-right: 0;
    border-bottom: 3px solid var(--olive);
  }

  .artist-dialog__figure img {
    min-height: 0;
  }

  .dialog-close {
    position: fixed;
    top: 14px;
    right: 14px;
    margin: 0;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cta-panel .button {
    justify-self: start;
  }
}

@media (max-width: 1000px) {
  /* Orange headline artwork: tablet controls */
  .intro-orangutan-layer {
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0.62;
  }

  /* Hero tiger layer: tablet controls */
  .hero-tiger-layer {
    top: -3%;
    left: 75%;
    width: clamp(760px, 124vw, 1040px);
    opacity: 0.58;
  }

  .hero-headshots {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1000px) {
  /* Orange headline artwork: mobile controls */
  .intro-orangutan-layer {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0.54;
    transform: none;
  }

  /* Hero tiger layer: mobile controls */
  .hero-tiger-layer {
    top: -5%;
    left: 75%;
    width: clamp(620px, 172vw, 860px);
    opacity: 0.54;
  }

  .hero {
    min-height: auto;
    padding-bottom: 2rem;
  }

  .hero-inner {
    gap: clamp(24px, 4vw, 48px);
    padding-bottom: 1.1rem;
  }

  .hero-brand {
    margin-top: 1.2rem;
  }

  .hero-logo {
    max-width: min(820px, 100%);
    width: min(100%, 820px);
  }

  .hero-strapline {
    max-width: min(720px, 100%);
    width: min(100%, 720px);
    margin: -0.35rem auto 0;
    padding-left: 0;
    transform: scale(1);
  }

  .hero-headshots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1rem;
  }

  .hero-headshot {
    border-width: 2px;
  }
}

@media (max-width: 420px) {
  .hero-headshots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-headshot {
    border-width: 1px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .header-inner {
    min-height: 68px;
  }

  .site-logo__text {
    font-size: 1.1rem;
  }

  .site-logo__mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-top: 100px;
  }

  .hero h1 {
    font-size: clamp(4.3rem, 24vw, 7.4rem);
  }

  .hero-logo {
    width: min(100%, 640px);
  }

  .hero-strapline {
    width: min(100%, 640px);
    margin-top: -0.2rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-art {
    width: calc(100% - 18px);
  }

  .hero-art::before {
    top: 13px;
    right: -13px;
    bottom: -13px;
    left: 13px;
  }

  .section-heading h2,
  .story-copy h2,
  .cta-panel h2 {
    font-size: clamp(3rem, 17vw, 5.4rem);
  }

  .tour-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .filters {
    width: 100%;
  }

  .filter-button {
    flex: 1 1 auto;
  }

  .tour-row {
    grid-template-columns: 60px minmax(0, 1fr);
    min-height: 0;
    padding: 20px 0;
  }

  .date-tile {
    width: 58px;
    min-height: 70px;
  }

  .date-tile__day {
    font-size: 2rem;
  }

  .tour-row__action {
    grid-column: 2;
    justify-self: start;
  }

  .ticket-button {
    width: auto;
  }

  .block-grid,
  .artist-grid {
    grid-template-columns: 1fr;
  }

  .artist-card__image {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .artist-card__copy {
    min-height: 205px;
  }

  .artist-dialog {
    width: calc(100% - 18px);
    max-height: 94vh;
  }

  .artist-dialog__copy {
    padding: 34px 24px 42px;
  }

  .artist-dialog h2 {
    font-size: clamp(3.2rem, 18vw, 5.2rem);
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
