:root {
  --brand-blue: #004aad;
  --brand-yellow: #ffbd59;
  --brand-white: #ffffff;
  --brand-black: #000000;
  --blue-soft: #ffffff;
  --line: rgba(0, 74, 173, 0.2);
  --shadow: 0 16px 38px rgba(0, 74, 173, 0.16);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --container: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  background: var(--brand-blue);
  color: var(--brand-black);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 18px;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.9rem);
}

h2 {
  font-size: clamp(2.15rem, 4.8vw, 4rem);
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
}

:focus-visible {
  outline: 4px solid var(--brand-yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border: 2px solid var(--brand-black);
  border-radius: 999px;
  background: var(--brand-white);
  color: var(--brand-black);
  font-weight: 800;
}

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

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

.narrow {
  max-width: 760px;
}

.muted {
  color: var(--brand-blue);
}

.section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(74px, 9vw, 122px);
  background-color: var(--brand-white);
  color: var(--brand-black);
}

.section:not(.section-blue):not(.section-cream):not(.section-contact) {
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
    url("../back1.png") center / cover no-repeat;
}

.section::after,
.page-hero::after {
  position: absolute;
  z-index: 0;
  width: 190px;
  height: 118px;
  border: 4px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.08;
  pointer-events: none;
}

.section::after {
  right: -65px;
  bottom: 28px;
  color: var(--brand-blue);
}

.section > .container,
.page-hero > .container {
  position: relative;
  z-index: 1;
}

.section-blue,
.section-cream {
  background: var(--brand-blue);
  color: var(--brand-white);
}

.section-blue::after,
.section-cream::after {
  color: var(--brand-yellow);
}

.section-blue h2,
.section-cream h2 {
  color: var(--brand-yellow);
}

.section-blue .muted,
.section-cream .muted {
  color: var(--brand-white);
}

.section-contact {
  background:
    linear-gradient(rgba(0, 74, 173, 0.28), rgba(0, 74, 173, 0.28)),
    url("../back2.png") center / cover no-repeat;
  color: var(--brand-white);
}

.section-contact h2 {
  color: var(--brand-yellow);
}

.section-contact .muted {
  color: var(--brand-white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.section-blue .eyebrow,
.section-cream .eyebrow,
.section-contact .eyebrow,
.page-hero .eyebrow,
.home-hero .eyebrow {
  color: var(--brand-yellow);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 44px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading h2 {
  color: var(--brand-blue);
}

.section-heading p {
  max-width: 490px;
  color: var(--brand-blue);
}

.section-blue .section-heading h2,
.section-cream .section-heading h2 {
  color: var(--brand-yellow);
}

.section-blue .section-heading p,
.section-cream .section-heading p {
  color: var(--brand-white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-blue);
  font-weight: 800;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.section-blue .text-link,
.section-cream .text-link,
.section-contact .text-link {
  color: var(--brand-yellow);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 2px solid var(--brand-yellow);
  border-radius: 999px;
  background: var(--brand-yellow);
  color: var(--brand-black);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--brand-blue);
  background: var(--brand-white);
  color: var(--brand-blue);
  transform: translateY(-2px);
}

.button-secondary {
  border-color: var(--brand-white);
  background: transparent;
  color: var(--brand-white);
}

.button-secondary:hover {
  border-color: var(--brand-yellow);
  background: var(--brand-white);
  color: var(--brand-blue);
}

.button-small {
  min-height: 40px;
  padding: 9px 16px;
  font-size: 0.8rem;
}

.button[disabled] {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

/* Navigation */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 3px solid var(--brand-yellow);
  background: linear-gradient(90deg, var(--brand-white) 0%, var(--brand-white) 24%, var(--brand-blue) 53%, var(--brand-blue) 100%);
  box-shadow: 0 8px 24px rgba(0, 74, 173, 0.12);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.site-header .brand,
.site-footer .brand {
  padding: 4px 10px;
  border-radius: 18px;
}

.brand img {
  width: 116px;
  height: auto;
  max-height: 64px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav > a:not(.button) {
  position: relative;
  color: var(--brand-white);
  font-size: 0.85rem;
  font-weight: 700;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-yellow);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav > a:hover,
.main-nav > a[aria-current="page"] {
  color: var(--brand-yellow);
}

.main-nav > a:hover::after,
.main-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 2px solid var(--brand-yellow);
  border-radius: 50%;
  background: transparent;
  color: var(--brand-white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */
.home-hero {
  position: relative;
  display: grid;
  min-height: min(720px, calc(100vh - var(--header-height)));
  align-items: center;
  overflow: hidden;
  color: var(--brand-white);
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media::after {
  background:
    linear-gradient(180deg, rgba(0, 74, 173, 0.7), rgba(0, 74, 173, 0.54)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.44), transparent 68%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  padding-block: 90px;
  text-align: center;
}

.hero-content h1 {
  margin-bottom: 24px;
  color: var(--brand-yellow);
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.34);
}

.hero-content .lead {
  max-width: 780px;
  margin: 0 auto 32px;
  color: var(--brand-white);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(84px, 11vw, 142px);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 189, 89, 0.22), transparent 24%),
    var(--brand-blue);
  color: var(--brand-white);
}

.page-hero::after {
  top: -24px;
  right: -40px;
  width: 280px;
  height: 180px;
  color: var(--brand-yellow);
  opacity: 0.35;
}

.page-hero h1 {
  max-width: 900px;
  color: var(--brand-yellow);
}

.page-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--brand-white);
  font-weight: 400;
}

/* Projects */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

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

.project-card {
  position: relative;
  overflow: hidden;
  border: 3px solid var(--brand-blue);
  border-radius: var(--radius);
  background: var(--brand-white);
  box-shadow: var(--shadow);
}

.project-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-bottom: 3px solid var(--brand-blue);
}

.project-card-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 74, 173, 0.18), transparent 58%);
  content: "";
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.project-card:hover img {
  transform: scale(1.025);
}

.project-card-content {
  padding: 26px;
}

.project-card h2,
.project-card h3 {
  margin-bottom: 13px;
  color: var(--brand-blue);
}

.project-card p {
  margin-bottom: 0;
  color: var(--brand-black);
  font-weight: 400;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.status,
.tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status {
  gap: 7px;
  color: var(--brand-blue);
}

.status::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-yellow);
  box-shadow: 0 0 0 2px var(--brand-blue);
  content: "";
}

.tag {
  padding: 7px 11px;
  border: 1px solid var(--brand-blue);
  background: var(--blue-soft);
  color: var(--brand-blue);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

/* Project page: vintage show tickets */
.projects-list-section,
.artists-list-section {
  padding-top: clamp(52px, 7vw, 88px);
}

.projects-list-heading,
.artists-list-heading {
  max-width: 760px;
  margin-bottom: clamp(36px, 5vw, 58px);
}

.projects-list-heading h1,
.artists-list-heading h1 {
  margin-bottom: 14px;
  color: var(--brand-blue);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
}

.projects-list-heading > p:last-child,
.artists-list-heading > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--brand-black);
}

.project-ticket-list {
  display: grid;
  gap: 26px;
}

.ticket-card {
  position: relative;
  display: grid;
  min-height: 220px;
  grid-template-columns: minmax(240px, 30%) minmax(0, 1fr) 168px;
  overflow: visible;
  border-width: 2px;
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(0, 74, 173, 0.13);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.ticket-card:hover {
  box-shadow: 0 17px 34px rgba(0, 74, 173, 0.2);
  transform: translateY(-3px);
}

.ticket-card .ticket-media {
  height: 100%;
  min-height: 216px;
  aspect-ratio: auto;
  border-right: 2px solid var(--brand-blue);
  border-bottom: 0;
  border-radius: 19px 0 0 19px;
}

.ticket-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 26px 32px;
}

.ticket-content h2 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
}

.ticket-content .tag-row {
  margin-bottom: 13px;
}

.ticket-content p {
  max-width: 660px;
  font-size: 0.94rem;
  line-height: 1.55;
}

.ticket-stub {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px 18px;
  border-left: 2px dashed var(--brand-blue);
  border-radius: 0 19px 19px 0;
  background:
    linear-gradient(rgba(255, 189, 89, 0.16), rgba(255, 189, 89, 0.16)),
    var(--brand-white);
  text-align: center;
}

.ticket-brand {
  color: var(--brand-blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ticket-stub .status {
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.ticket-stub .status::before {
  display: none;
}

.project-next-date {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 2px dashed rgba(0, 74, 173, 0.3);
  color: var(--brand-blue);
  font-size: 0.8rem !important;
}

/* Dates de spectacle */
.show-dates-section {
  border-top: 4px solid var(--brand-yellow);
  border-bottom: 4px solid var(--brand-yellow);
}

.show-date-list {
  display: grid;
  gap: 20px;
}

.show-date-ticket {
  display: grid;
  min-height: 178px;
  overflow: hidden;
  grid-template-columns: 150px minmax(0, 1fr) 220px;
  border: 3px solid var(--brand-blue);
  border-radius: 24px;
  background: var(--brand-white);
  color: var(--brand-black);
  box-shadow: 0 16px 34px rgba(0, 74, 173, 0.16);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.show-date-ticket:hover {
  box-shadow: 0 22px 42px rgba(0, 74, 173, 0.23);
  transform: translateY(-3px);
}

.date-ticket-calendar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-right: 3px dashed var(--brand-blue);
  background: var(--brand-yellow);
  color: var(--brand-blue);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.date-ticket-calendar strong {
  font-size: clamp(3rem, 5vw, 4.6rem);
  letter-spacing: -0.07em;
}

.date-ticket-calendar span {
  margin-top: 7px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.date-ticket-calendar small {
  margin-top: 6px;
  font-weight: 700;
}

.date-ticket-main {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 26px 32px;
}

.date-ticket-main h3 {
  margin-bottom: 8px;
  color: var(--brand-blue);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.date-ticket-main p {
  margin-bottom: 0;
}

.date-ticket-project {
  margin-bottom: 8px !important;
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.date-ticket-project a:hover {
  text-decoration: underline;
  text-decoration-color: var(--brand-yellow);
  text-decoration-thickness: 3px;
}

.date-ticket-note {
  margin-top: 10px !important;
  color: var(--brand-blue);
  font-size: 0.84rem;
}

.date-ticket-stub {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 24px 18px;
  border-left: 3px dashed var(--brand-blue);
  background: rgba(255, 189, 89, 0.14);
  text-align: center;
}

.date-ticket-time {
  color: var(--brand-blue);
  font-size: 1.5rem;
  font-weight: 800;
}

.date-ticket-status {
  color: var(--brand-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.date-ticket-action {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border: 2px solid var(--brand-yellow);
  border-radius: 999px;
  background: var(--brand-yellow);
  color: var(--brand-black);
  font-size: 0.78rem;
  font-weight: 800;
}

.date-ticket-action.secondary {
  border-color: var(--brand-blue);
  background: var(--brand-white);
  color: var(--brand-blue);
}

.dates-empty {
  margin: 0;
  padding: 34px;
  border: 3px dashed var(--brand-blue);
  border-radius: 22px;
  background: var(--brand-white);
  color: var(--brand-blue) !important;
  font-weight: 800;
  text-align: center;
}

.artist-card {
  position: relative;
}

[data-detail-url] {
  cursor: pointer;
}

.card-detail-link {
  position: absolute;
  z-index: 5;
  inset: 0;
  border-radius: inherit;
}

.card-detail-link:focus-visible {
  outline: 4px solid var(--brand-yellow);
  outline-offset: 4px;
}

[data-detail-url]:has(.card-detail-link:focus-visible) {
  box-shadow: 0 0 0 5px var(--brand-white), 0 0 0 9px var(--brand-blue);
}

/* Project and artist detail pages */
.detail-hero {
  position: relative;
  padding-block: clamp(58px, 8vw, 105px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
    url("../back1.png") center / cover no-repeat;
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(42px, 7vw, 86px);
}

.detail-media {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  border: 3px solid var(--brand-blue);
  border-radius: var(--radius-lg);
  background: var(--brand-white);
  box-shadow: 14px 14px 0 var(--brand-yellow);
}

.detail-media img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.detail-copy h1 {
  margin: 18px 0;
  color: var(--brand-blue);
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.detail-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}

.detail-kicker .eyebrow {
  margin-bottom: 0;
}

.detail-copy .tag-row {
  margin-bottom: 25px;
}

.detail-lead {
  margin-bottom: 17px;
  color: var(--brand-blue);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.45;
}

.detail-copy > p:not(.eyebrow):not(.detail-lead) {
  max-width: 660px;
}

.detail-copy .text-link {
  margin-top: 13px;
}

.detail-related {
  border-top: 4px solid var(--brand-yellow);
}

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

.related-card {
  overflow: hidden;
  border: 2px solid var(--brand-blue);
  border-radius: var(--radius);
  background: var(--brand-white);
  box-shadow: var(--shadow);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.related-card:hover {
  box-shadow: 0 18px 34px rgba(0, 74, 173, 0.22);
  transform: translateY(-3px);
}

.related-card:focus-visible {
  outline: 4px solid var(--brand-yellow);
  outline-offset: 4px;
}

.related-card img {
  width: 100%;
  height: 210px;
  border-bottom: 2px solid var(--brand-blue);
  object-fit: cover;
}

.related-card-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.related-card-title {
  color: var(--brand-blue);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.detail-error h1 {
  color: var(--brand-blue);
}

/* About and calls to action */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: clamp(44px, 8vw, 110px);
}

.about-grid h2 {
  margin-bottom: 0;
}

.about-copy {
  color: inherit;
  font-size: 1.04rem;
}

.about-copy p:last-of-type {
  margin-bottom: 27px;
}

/* About page — simple editorial flow */
.about-page-intro {
  padding-block: clamp(46px, 6vw, 72px) clamp(28px, 4vw, 46px);
  background: var(--brand-white);
}

.about-page-intro h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--brand-blue);
  font-size: clamp(2.25rem, 4.6vw, 4rem);
  text-transform: none;
}

.about-page-intro .lead {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.about-page-content {
  padding-block: 24px clamp(70px, 9vw, 112px);
  background: var(--brand-white);
}

.about-editorial-list {
  width: min(960px, calc(100% - 48px));
  display: grid;
  gap: clamp(34px, 5vw, 58px);
}

.about-editorial-block {
  display: grid;
  align-items: center;
  gap: clamp(26px, 5vw, 54px);
}

.about-editorial-block.layout-image-left,
.about-editorial-block.layout-image-right {
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
}

.about-editorial-block.layout-image-right .about-editorial-media {
  order: 2;
}

.about-editorial-block.layout-image-right .about-editorial-copy {
  order: 1;
}

.about-editorial-block.layout-text-only {
  display: block;
}

.about-editorial-block.layout-text-only .about-editorial-copy {
  max-width: 760px;
}

.about-editorial-copy h2 {
  margin-bottom: 14px;
  color: var(--brand-blue);
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  text-transform: none;
}

.about-editorial-copy p {
  margin-bottom: 14px;
  white-space: pre-line;
}

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

.about-editorial-media {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-sm);
  background: var(--brand-white);
}

.about-editorial-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.appointment {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: clamp(28px, 5vw, 48px);
  border: 4px solid var(--brand-yellow);
  border-radius: 72px 72px 72px 22px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--brand-white);
}

.appointment-mark {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 3px solid var(--brand-yellow);
  border-radius: 50%;
  color: var(--brand-yellow);
  font-size: 1.8rem;
}

.appointment h2 {
  margin-bottom: 8px;
  color: var(--brand-yellow);
  font-size: clamp(1.8rem, 3.3vw, 2.8rem);
}

.appointment p {
  margin-bottom: 0;
  color: var(--brand-white);
}

.partners-strip {
  padding-block: 34px;
  border-top: 4px solid var(--brand-yellow);
  border-bottom: 4px solid var(--brand-yellow);
  background: var(--brand-white);
  color: var(--brand-blue);
}

.partners-inner {
  display: grid;
  grid-template-columns: auto repeat(5, 1fr);
  align-items: center;
  gap: 28px;
}

.partners-label {
  color: var(--brand-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.partner {
  color: var(--brand-blue);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

/* Artists */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.artist-card {
  overflow: hidden;
  border: 3px solid var(--brand-blue);
  border-radius: var(--radius);
  background: var(--brand-white);
  box-shadow: var(--shadow);
}

.artist-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-bottom: 3px solid var(--brand-blue);
  object-fit: cover;
  object-position: center 25%;
}

.artist-content {
  padding: 24px;
}

.artist-content h2 {
  margin: 10px 0;
  color: var(--brand-blue);
  font-size: 1.9rem;
}

.artist-content p {
  margin-bottom: 0;
  color: var(--brand-black);
}

.artist-shows {
  padding-top: 14px;
  border-top: 2px solid var(--line);
  font-size: 0.86rem;
}

.artist-shows strong {
  color: var(--brand-blue);
}

/* Casting roles */
.casting-list-section {
  padding-top: clamp(48px, 6vw, 78px);
}

.casting-page-heading {
  margin-bottom: 34px;
}

.casting-page-heading h1 {
  margin-bottom: 0;
  color: var(--brand-blue);
  font-size: clamp(2.35rem, 5vw, 4rem);
}

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

.casting-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px;
  border: 2px dashed var(--brand-blue);
  border-radius: var(--radius-sm);
  background: var(--brand-white);
  color: var(--brand-blue);
  font-weight: 700;
  text-align: center;
}

.role-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 24px;
  padding: 27px;
  border: 3px solid var(--brand-blue);
  border-radius: 36px 36px 36px 12px;
  background: var(--brand-white);
  box-shadow: var(--shadow);
}

.role-card h3 {
  margin: 8px 0 12px;
  color: var(--brand-blue);
}

.role-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.role-card p {
  margin-bottom: 0;
  color: var(--brand-black);
  font-size: 0.92rem;
}

.role-project {
  color: var(--brand-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.role-card .role-profile {
  margin-top: 14px;
}

.role-card .role-meta {
  margin-top: 14px;
  color: var(--brand-blue);
  font-weight: 700;
}

.role-card.is-closed {
  border-color: var(--line);
  box-shadow: none;
  opacity: 0.78;
}

.role-closed-label {
  align-self: center;
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

[hidden] {
  display: none !important;
}

/* Contact and forms */
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(48px, 8vw, 110px);
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  color: var(--brand-white);
  font-style: normal;
}

.contact-details a:hover {
  color: var(--brand-yellow);
}

.form-card {
  padding: clamp(24px, 5vw, 42px);
  border: 3px solid var(--brand-blue);
  border-radius: var(--radius);
  background: var(--brand-white);
  color: var(--brand-black);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.16);
}

.section-contact .form-card {
  border-color: var(--brand-yellow);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  color: var(--brand-blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 2px solid rgba(0, 74, 173, 0.35);
  border-radius: var(--radius-sm);
  background: var(--brand-white);
  color: var(--brand-black);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand-blue);
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 189, 89, 0.42);
}

.field input[type="file"] {
  padding: 10px;
}

.field-help {
  margin: 0;
  color: var(--brand-blue);
  font-size: 0.75rem;
}

.check-field {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--brand-black);
  font-size: 0.82rem;
}

.check-field input {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  accent-color: var(--brand-blue);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--brand-blue);
  font-size: 0.84rem;
}

.form-status.success {
  color: var(--brand-blue);
  font-weight: 700;
}

.form-status.error {
  color: var(--brand-black);
  font-weight: 700;
}

.form-confirmation-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px 0;
  background: var(--brand-blue);
}

.form-confirmation-card {
  padding: clamp(32px, 6vw, 60px);
  border: 4px solid var(--brand-yellow);
  border-radius: var(--radius);
  background: var(--brand-white);
  text-align: center;
}

.form-confirmation-card h1 {
  color: var(--brand-blue);
  font-size: clamp(2.6rem, 8vw, 4.5rem);
}

.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.casting-application {
  padding: 0 0 clamp(64px, 8vw, 100px);
  background: var(--brand-white);
}

.casting-application .form-card {
  max-width: 920px;
  margin: 0 auto;
  box-shadow: 8px 8px 0 rgba(0, 74, 173, 0.12);
}

/* Footer */
.site-footer {
  padding-block: 52px 26px;
  border-top: 4px solid var(--brand-yellow);
  background: var(--brand-blue);
  color: var(--brand-white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr;
  gap: 58px;
  padding-bottom: 42px;
}

.footer-intro p {
  max-width: 430px;
  margin: 14px 0 0;
  color: var(--brand-white);
  font-size: 0.86rem;
}

.footer-heading {
  margin-bottom: 15px;
  color: var(--brand-yellow);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
  color: var(--brand-white);
  font-size: 0.86rem;
}

.footer-links a:hover {
  color: var(--brand-white);
  text-decoration: underline;
  text-decoration-color: var(--brand-yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--brand-white);
  font-size: 0.74rem;
}

/* Motion */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 26px 24px;
    background: var(--brand-blue);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav > a:not(.button) {
    padding: 18px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 1.05rem;
  }

  .main-nav > .button {
    margin-top: 24px;
  }

  .main-nav > a::after {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .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);
  }

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

  .ticket-card {
    grid-template-columns: 230px minmax(0, 1fr) 142px;
  }

  .ticket-content {
    padding-inline: 25px;
  }

  .show-date-ticket {
    grid-template-columns: 125px minmax(0, 1fr) 185px;
  }

  .date-ticket-main {
    padding-inline: 24px;
  }

  .about-grid,
  .about-editorial-block.layout-image-left,
  .about-editorial-block.layout-image-right,
  .contact-layout,
  .detail-hero-grid {
    grid-template-columns: 1fr;
  }

  .about-editorial-block.layout-image-right .about-editorial-media,
  .about-editorial-block.layout-image-right .about-editorial-copy {
    order: initial;
  }

  .detail-media,
  .detail-media img {
    min-height: 400px;
  }

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

  .appointment {
    grid-template-columns: auto 1fr;
  }

  .appointment .button {
    grid-column: 2;
    width: fit-content;
  }

  .partners-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .partners-label {
    grid-column: 1 / -1;
    text-align: center;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .brand img {
    width: 90px;
    max-height: 56px;
  }

  .home-hero {
    min-height: 650px;
    align-items: end;
  }

  .hero-content {
    padding-block: 84px 64px;
  }

  .hero-content h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(0, 74, 173, 0.46), rgba(0, 74, 173, 0.9)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.26), transparent);
  }

  .about-page-intro h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

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

  .section-heading {
    display: block;
  }

  .section-heading p,
  .section-heading .text-link {
    margin-top: 16px;
  }

  .project-grid,
  .project-grid-full,
  .artist-grid,
  .roles-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .project-card-content,
  .artist-content {
    padding: 22px;
  }

  .projects-list-section,
  .artists-list-section {
    padding-top: 46px;
  }

  .projects-list-heading,
  .artists-list-heading {
    margin-bottom: 32px;
  }

  .ticket-card {
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .ticket-card .ticket-media {
    height: 190px;
    min-height: 0;
    border-right: 0;
    border-bottom: 2px solid var(--brand-blue);
    border-radius: 17px 17px 0 0;
  }

  .ticket-content {
    padding: 24px 22px;
  }

  .ticket-content h2 {
    font-size: clamp(1.55rem, 9vw, 2rem);
  }

  .ticket-content p {
    font-size: 0.9rem;
  }

  .ticket-stub {
    min-height: 76px;
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    border-top: 2px dashed var(--brand-blue);
    border-left: 0;
    border-radius: 0 0 17px 17px;
    text-align: left;
  }

  .ticket-stub .status {
    flex-direction: row;
    gap: 9px;
    text-align: right;
  }

  .show-date-ticket {
    grid-template-columns: 88px minmax(0, 1fr);
    border-radius: 20px;
  }

  .date-ticket-calendar {
    padding: 16px 10px;
  }

  .date-ticket-calendar strong {
    font-size: 2.7rem;
  }

  .date-ticket-main {
    padding: 21px 18px;
  }

  .date-ticket-stub {
    min-height: 72px;
    flex-direction: row;
    justify-content: space-between;
    grid-column: 1 / -1;
    padding: 15px 18px;
    border-top: 3px dashed var(--brand-blue);
    border-left: 0;
    text-align: left;
  }

  .date-ticket-time {
    font-size: 1.15rem;
  }

  .detail-hero {
    padding-block: 44px 64px;
  }

  .detail-hero-grid {
    gap: 38px;
  }

  .detail-media,
  .detail-media img {
    min-height: 280px;
  }

  .detail-media {
    border-radius: 24px;
    box-shadow: 8px 8px 0 var(--brand-yellow);
  }

  .detail-copy h1 {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .related-card img {
    height: 190px;
  }

  .appointment {
    grid-template-columns: 1fr;
    border-radius: 44px 44px 44px 16px;
  }

  .appointment-mark {
    width: 58px;
    height: 58px;
  }

  .appointment .button {
    grid-column: auto;
    width: 100%;
  }

  .partners-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .role-card {
    grid-template-columns: 1fr;
  }

  .role-card .button {
    width: 100%;
  }

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

  .field-full {
    grid-column: auto;
  }

  .form-actions {
    display: grid;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Artist gallery and selectable artist detail layouts */
.artist-layout-gallery-first .detail-hero-grid {
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(34px, 5vw, 66px);
}

.artist-layout-gallery-first .detail-media,
.artist-layout-gallery-first .detail-media img {
  min-height: 390px;
}

.artist-layout-portrait-focus .detail-hero-grid {
  max-width: 1120px;
  grid-template-columns: 1fr;
}

.artist-layout-portrait-focus .detail-media,
.artist-layout-portrait-focus .detail-media img {
  min-height: clamp(540px, 68vw, 760px);
}

.artist-layout-portrait-focus .detail-copy {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: -110px auto 0;
  padding: clamp(25px, 5vw, 48px);
  border: 3px solid var(--brand-blue);
  border-radius: var(--radius-lg);
  background: var(--brand-white);
  box-shadow: 10px 10px 0 var(--brand-yellow);
}

.artist-gallery {
  border-top: 4px solid var(--brand-yellow);
  background: var(--brand-white);
}

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

.artist-gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 0;
  border: 3px solid var(--brand-blue);
  border-radius: var(--radius);
  background: var(--brand-blue);
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.artist-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform 180ms ease;
}

.artist-gallery-item:hover img {
  transform: scale(1.025);
}

.artist-gallery-item.is-video {
  cursor: pointer;
}

.gallery-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 3px solid var(--brand-white);
  border-radius: 50%;
  background: var(--brand-yellow);
  color: var(--brand-blue);
  font-size: 1.5rem;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.artist-gallery-gallery-first {
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    url("../back1.png") center / cover no-repeat;
}

.artist-gallery-gallery-first .artist-gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 190px;
}

.artist-gallery-gallery-first .artist-gallery-item {
  min-height: 0;
}

.artist-gallery-gallery-first .artist-gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.artist-gallery-gallery-first .artist-gallery-item img {
  min-height: 0;
}

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

.artist-gallery-portrait-focus .artist-gallery-item,
.artist-gallery-portrait-focus .artist-gallery-item img {
  min-height: 350px;
}

.gallery-viewer {
  width: min(1120px, calc(100% - 34px));
  max-width: none;
  max-height: calc(100vh - 34px);
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.gallery-viewer::backdrop {
  background: rgba(0, 0, 0, 0.86);
}

.gallery-viewer-frame {
  position: relative;
  display: grid;
  min-height: min(76vh, 760px);
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 14px;
  padding: 58px 18px 42px;
  border: 3px solid var(--brand-yellow);
  border-radius: var(--radius-lg);
  background: var(--brand-blue);
}

.gallery-viewer-content {
  display: grid;
  min-width: 0;
  height: min(68vh, 680px);
  place-items: center;
}

.gallery-viewer-content img,
.gallery-viewer-content iframe {
  display: block;
  max-width: 100%;
  max-height: 100%;
  border: 0;
  border-radius: 18px;
  background: var(--black);
}

.gallery-viewer-content img {
  width: auto;
  height: auto;
  object-fit: contain;
}

.gallery-viewer-content iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.gallery-viewer-close,
.gallery-viewer-nav {
  display: grid;
  place-items: center;
  border: 2px solid var(--brand-white);
  border-radius: 50%;
  background: var(--brand-yellow);
  color: var(--brand-blue);
  font-weight: 800;
}

.gallery-viewer-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
}

.gallery-viewer-nav {
  width: 54px;
  height: 54px;
  font-size: 1.5rem;
}

.gallery-viewer-count {
  position: absolute;
  bottom: 10px;
  left: 50%;
  margin: 0;
  color: var(--brand-white);
  font-weight: 800;
  transform: translateX(-50%);
}

@media (max-width: 980px) {
  .artist-layout-gallery-first .detail-hero-grid,
  .artist-layout-portrait-focus .detail-hero-grid {
    grid-template-columns: 1fr;
  }

  .artist-layout-portrait-focus .detail-copy {
    margin-top: -70px;
  }

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

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

@media (max-width: 680px) {
  .artist-layout-portrait-focus .detail-media,
  .artist-layout-portrait-focus .detail-media img {
    min-height: 380px;
  }

  .artist-layout-portrait-focus .detail-copy {
    margin-top: -38px;
    padding: 22px;
    box-shadow: 7px 7px 0 var(--brand-yellow);
  }

  .artist-gallery-grid,
  .artist-gallery-gallery-first .artist-gallery-grid,
  .artist-gallery-portrait-focus .artist-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .artist-gallery-gallery-first .artist-gallery-item:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .artist-gallery-item,
  .artist-gallery-item img,
  .artist-gallery-portrait-focus .artist-gallery-item,
  .artist-gallery-portrait-focus .artist-gallery-item img {
    min-height: 240px;
  }

  .gallery-viewer {
    width: calc(100% - 18px);
    max-height: calc(100vh - 18px);
  }

  .gallery-viewer-frame {
    min-height: calc(100vh - 18px);
    grid-template-columns: 1fr 1fr;
    align-content: center;
    padding: 62px 14px 45px;
  }

  .gallery-viewer-content {
    height: auto;
    min-height: 55vh;
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .gallery-viewer-nav {
    justify-self: center;
  }

  .gallery-viewer-nav.previous {
    grid-column: 1;
  }

  .gallery-viewer-nav.next {
    grid-column: 2;
  }
}

@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;
  }

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