:root {
  --copper: #be7c4d;
  --oxblood: #92140c;
  --ink: #353238;
  --terracotta: #be5a38;
  --stone: #c1b4ae;
  --cream: #f7f0eb;
  --paper: #fffaf6;
  --white: #ffffff;
  --muted: rgba(53, 50, 56, 0.72);
  --line: rgba(53, 50, 56, 0.14);
  --shadow: 0 24px 70px rgba(53, 50, 56, 0.14);
  --soft-shadow: 0 14px 40px rgba(53, 50, 56, 0.10);
  --radius: 30px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 999;
  background: var(--oxblood);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
}
.skip-link:focus { top: 16px; }

.site-shell {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 240, 235, 0.90);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 14px;
  min-width: 170px;
}

.logo {
  width: min(198px, 38vw);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.94rem;
}

.nav a {
  text-decoration: none;
  color: rgba(53, 50, 56, 0.82);
  font-weight: 650;
  letter-spacing: 0.01em;
}

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

.lang {
  display: inline-flex;
  min-width: 44px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.54);
  color: var(--oxblood) !important;
  font-weight: 850 !important;
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
}

main { flex: 1; }

.container {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: clamp(48px, 6vw, 78px) 0;
  background:
    linear-gradient(90deg, rgba(53,50,56,0.76), rgba(53,50,56,0.36) 45%, rgba(146,20,12,0.24)),
    radial-gradient(circle at 72% 18%, rgba(190, 124, 77, .52), transparent 28%),
    linear-gradient(135deg, #271f22 0%, #5b2720 46%, #c1b4ae 100%);
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .34;
  background-image:
    linear-gradient(115deg, transparent 0 45%, rgba(255,255,255,.18) 45% 46%, transparent 46% 100%),
    radial-gradient(circle at 15% 65%, rgba(255,255,255,.14), transparent 22%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -160px -8%;
  height: 300px;
  background: var(--cream);
  transform: rotate(-4deg);
  z-index: -1;
  border-top: 1px solid rgba(255,255,255,.18);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, .9fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: #f6d6c3;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 850;
}

.hero h1,
.page-hero h1,
.section-title {
  font-family: Georgia, "Times New Roman", serif;
  line-height: .98;
  letter-spacing: -.055em;
}

.hero h1 {
  margin: 0;
  color: white;
  font-size: clamp(2.7rem, 6.2vw, 5.4rem);
}

.hero-lead {
  margin: 28px 0 0;
  max-width: 760px;
  color: rgba(255,255,255,.86);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--paper);
  color: var(--oxblood);
  box-shadow: 0 18px 36px rgba(0,0,0,.20);
}

.button.dark {
  background: var(--oxblood);
  color: white;
  box-shadow: 0 18px 36px rgba(146,20,12,.22);
}

.button.ghost {
  border-color: rgba(255,255,255,.42);
  color: white;
  background: rgba(255,255,255,.08);
}

.button.outline {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255,255,255,.66);
}

.hero-feature {
  border-radius: 38px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero-feature-image {
  min-height: 245px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.34), transparent 22%),
    linear-gradient(140deg, rgba(193,180,174,.78), rgba(190,90,56,.78)),
    var(--stone);
  padding: 28px;
}

.hero-feature-image img {
  width: min(310px, 78%);
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(53, 50, 56, .18));
}

.hero-feature-body {
  padding: 26px;
  background: rgba(53,50,56,.54);
}

.hero-feature-body h2 {
  margin: 0 0 8px;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -.035em;
}

.hero-feature-body p {
  margin: 0;
  color: rgba(255,255,255,.80);
}

.band {
  padding: 26px 0;
  background: var(--ink);
  color: white;
  overflow: hidden;
}

.marquee {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  color: rgba(255,255,255,.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  letter-spacing: -.02em;
}

.marquee span::after {
  content: "·";
  margin-left: 32px;
  color: var(--copper);
}

.section {
  padding: clamp(54px, 6.5vw, 88px) 0;
}

.section.alt {
  background: var(--paper);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(280px, .26fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.section-title {
  margin: 0;
  font-size: clamp(1.85rem, 3.5vw, 3.25rem);
}

.section-text {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 760px;
}

.grid {
  display: grid;
  gap: 24px;
}

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

.card {
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}

.card-body {
  padding: clamp(24px, 3vw, 34px);
}

.card h2,
.card h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: -.03em;
}

.card h3 { font-size: clamp(1.25rem, 1.8vw, 1.65rem); }
.card p { margin: 0; color: var(--muted); }

.media {
  position: relative;
  min-height: 275px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(53,50,56,.22), rgba(146,20,12,.10)),
    radial-gradient(circle at 25% 26%, rgba(255,255,255,.50), transparent 20%),
    linear-gradient(145deg, var(--stone), #f1e6df);
}

.media.dark {
  background:
    linear-gradient(135deg, rgba(53,50,56,.48), rgba(146,20,12,.22)),
    linear-gradient(145deg, #1f1c21, var(--terracotta));
  color: white;
}

.media span {
  max-width: 280px;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: rgba(53,50,56,.70);
}

.media.dark span { color: rgba(255,255,255,.84); }

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(146,20,12,.10);
  color: var(--oxblood);
  padding: 6px 11px;
  font-weight: 850;
  font-size: .78rem;
  letter-spacing: .02em;
}

.feature-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(53,50,56,.82);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 6px rgba(190,90,56,.13);
}

.page-hero {
  padding: clamp(38px, 5vw, 58px) 0 clamp(34px, 4.5vw, 52px);
  background:
    radial-gradient(circle at 10% 18%, rgba(190,124,77,.33), transparent 26%),
    radial-gradient(circle at 82% 16%, rgba(146,20,12,.16), transparent 30%),
    linear-gradient(145deg, #fffaf6, #efe3dd);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 1030px;
  margin: 0;
  font-size: clamp(2.05rem, 4.4vw, 3.95rem);
}

.page-hero p {
  max-width: 720px;
  margin: 16px 0 0;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  color: var(--muted);
}

.event-row {
  display: grid;
  grid-template-columns: minmax(260px, .46fr) minmax(0, .54fr);
  gap: 0;
}

.event-row .media {
  min-height: 380px;
  height: 100%;
}

.event-row + .event-row { margin-top: 28px; }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.gallery .media {
  min-height: 190px;
  border-radius: 22px;
  overflow: hidden;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.link-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.74);
  color: var(--oxblood);
  text-decoration: none;
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 850;
}

.support-hero {
  background:
    linear-gradient(110deg, rgba(53,50,56,.94), rgba(53,50,56,.82)),
    radial-gradient(circle at 78% 18%, rgba(190,124,77,.60), transparent 28%);
  color: white;
}

.support-hero h1,
.support-hero p { color: white; }

.contact-box {
  padding: clamp(26px, 4vw, 42px);
  background: var(--ink);
  color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-box h2,
.contact-box h3 {
  color: white;
}

.contact-box p {
  color: rgba(255,255,255,.72);
}

.contact-box a {
  color: white;
  font-weight: 850;
}

.footer {
  background: #242126;
  color: rgba(255,255,255,.78);
  padding: 54px 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) repeat(2, minmax(180px, .32fr));
  gap: 34px;
  align-items: start;
}

.footer-logo {
  width: 176px;
  filter: brightness(0) invert(1);
  opacity: .92;
  margin-bottom: 18px;
}

.footer h2,
.footer h3 {
  margin: 0 0 14px;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
}

.footer a {
  color: rgba(255,255,255,.86);
  display: block;
  text-decoration: none;
  margin: 8px 0;
}

.footer a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 34px;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: .92rem;
}

.notice {
  border-left: 4px solid var(--copper);
  background: rgba(190,124,77,.12);
  padding: 18px 20px;
  border-radius: 18px;
  color: rgba(53,50,56,.82);
}

@media (max-width: 1020px) {
  .menu-button { display: inline-flex; }
  .nav {
    position: absolute;
    top: 86px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: var(--shadow);
    padding: 10px;
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 13px 14px;
    border-radius: 18px;
  }
  .nav a:hover,
  .nav a[aria-current="page"] {
    background: rgba(146,20,12,.08);
  }
  .lang {
    justify-content: flex-start;
    border-radius: 18px;
  }
  .hero-grid,
  .section-head,
  .grid.two,
  .event-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
  }
  .event-row .media {
    min-height: 300px;
  }
}

@media (max-width: 700px) {
  .header-inner { min-height: 76px; }
  .nav { top: 76px; }
  .logo { width: 150px; }
  .hero-actions,
  .link-row {
    flex-direction: column;
  }
  .button,
  .link-pill {
    width: 100%;
  }
  .grid.three,
  .gallery {
    grid-template-columns: 1fr;
  }
  .page-hero h1 {
    letter-spacing: -.07em;
  }
}

.company-details {
  display: grid;
  gap: 14px;
  margin: 0;
}

.company-detail {
  display: grid;
  grid-template-columns: minmax(140px, .42fr) minmax(0, .58fr);
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.company-detail dt {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-weight: 760;
}

.company-detail dd {
  margin: 0;
  color: white;
  font-weight: 820;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.social-icon-link {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.76);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(53, 50, 56, .10);
  transition: transform .16s ease, box-shadow .16s ease;
}

.social-icon-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(53, 50, 56, .16);
}

.social-icon-link img {
  width: 34px;
  height: 34px;
}

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

.video-embed {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--ink);
  box-shadow: 0 12px 34px rgba(53, 50, 56, .14);
  aspect-ratio: 16 / 9;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-logo-quiet {
  width: min(230px, 70%);
  opacity: .08;
  filter: none;
  position: absolute;
  right: 24px;
  top: 20px;
  pointer-events: none;
}

@media (max-width: 700px) {
  .company-detail {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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


.official-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: 24px;
  align-items: start;
}

.official-card {
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.official-card-header {
  padding: 22px clamp(22px, 3vw, 32px);
  background:
    linear-gradient(135deg, rgba(146,20,12,.08), rgba(190,124,77,.10)),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.official-card-header h2,
.official-card-header h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.025em;
  line-height: 1.08;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.official-card-body {
  padding: clamp(22px, 3vw, 32px);
}

.detail-table {
  display: grid;
  gap: 0;
  margin: 0;
}

.detail-line {
  display: grid;
  grid-template-columns: minmax(150px, .42fr) minmax(0, .58fr);
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.detail-line:first-child {
  padding-top: 0;
}

.detail-line:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.detail-line dt {
  margin: 0;
  color: var(--muted);
  font-weight: 760;
}

.detail-line dd {
  margin: 0;
  color: var(--ink);
  font-weight: 820;
  overflow-wrap: anywhere;
}

.detail-line a {
  color: var(--oxblood);
  font-weight: 900;
}

.bank-box {
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(146,20,12,.07);
  border: 1px solid rgba(146,20,12,.14);
}

.bank-number {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.04rem, 1.7vw, 1.32rem);
  letter-spacing: .035em;
  font-weight: 920;
  color: var(--oxblood);
  overflow-wrap: anywhere;
}

.social-panel {
  margin-top: 24px;
}

.social-panel .social-icons {
  margin-top: 18px;
}

.compact-page-note {
  margin-top: 18px;
  color: var(--muted);
}

.support-bank-card {
  margin-top: 24px;
}

@media (max-width: 980px) {
  .official-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .detail-line {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.video-help {
  margin-top: 12px;
  font-size: .92rem;
  color: var(--muted);
}

.video-help a {
  color: var(--oxblood);
  font-weight: 850;
}

.clean-contact-intro {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 680px;
}

.contact-emphasis {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(146,20,12,.08);
  color: var(--oxblood) !important;
  font-weight: 900;
  text-decoration: none;
}

.support-bank-simple {
  margin-top: 20px;
}

.support-bank-simple .detail-line {
  grid-template-columns: minmax(130px, .32fr) minmax(0, .68fr);
}


.image-media {
  min-height: 275px;
  background-size: cover;
  background-position: center;
  background-color: var(--stone);
}

.hero-feature-image.visual-image {
  background-size: cover;
  background-position: center;
  min-height: 290px;
  padding: 0;
}

.hero-feature-image.visual-image span {
  display: none;
}

.event-card-image {
  min-height: 290px;
  background-size: cover;
  background-position: center;
}

.artist-photo {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}

.poster-spotlight {
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, .58fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 34px;
}

.poster-frame {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}

.poster-frame img {
  border-radius: 22px;
  width: 100%;
}

.carousel {
  position: relative;
  margin-top: 22px;
}

.carousel-track {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
  background: var(--paper);
}

.carousel-slide {
  display: none;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide .image-media {
  min-height: 430px;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255,250,246,.92);
  color: var(--oxblood);
  box-shadow: 0 10px 26px rgba(53,50,56,.18);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.carousel-button:hover {
  background: white;
}

.carousel-button.prev { left: 16px; }
.carousel-button.next { right: 16px; }

.social-icon-link.youtube {
  border-radius: 18px;
}

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

@media (max-width: 700px) {
  .carousel-slide .image-media {
    min-height: 260px;
  }
}

/* v9 refinements */
.page-hero.inner-panel {
  background:
    linear-gradient(110deg, rgba(53,50,56,.94), rgba(53,50,56,.82)),
    radial-gradient(circle at 78% 18%, rgba(190,124,77,.60), transparent 28%);
  color: white;
  padding: clamp(34px, 4.8vw, 56px) 0 clamp(30px, 4vw, 48px);
}
.page-hero.inner-panel h1,
.page-hero.inner-panel p { color: white; }
.page-hero.inner-panel p {
  max-width: 760px;
  color: rgba(255,255,255,.76);
}
.home-hero-copy { max-width: 1040px; }
.hero-grid.single {
  grid-template-columns: 1fr;
  max-width: 1040px;
}
.hero-grid.single .hero-actions { margin-top: 28px; }
.hero-grid.single .hero-lead { max-width: 760px; }
.carousel-slide { cursor: zoom-in; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(53, 50, 56, .94);
}
.lightbox.open { display: flex; }
.lightbox-frame {
  position: relative;
  max-width: min(96vw, 1540px);
  max-height: 92vh;
  padding: clamp(8px, 1.2vw, 18px);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255,250,246,.96), rgba(193,180,174,.92));
  box-shadow: 0 24px 90px rgba(0,0,0,.42);
  border: 1px solid rgba(255,255,255,.42);
}
.lightbox-image {
  display: block;
  max-width: calc(96vw - 36px);
  max-height: calc(92vh - 36px);
  border-radius: 18px;
  object-fit: contain;
}
.lightbox-button {
  position: absolute;
  z-index: 205;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(53,50,56,.72);
  color: #ffffff;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}
.lightbox-button:hover { background: rgba(146,20,12,.84); }
.lightbox-close { top: 22px; right: 22px; font-size: 28px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 700px) {
  .lightbox { padding: 12px; }
  .lightbox-button { width: 44px; height: 44px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* v10 LNOBT-inspired refinement */
.page-hero.inner-panel,.page-hero.support-hero,.page-hero{background:linear-gradient(110deg,rgba(53,50,56,.94),rgba(53,50,56,.82)),radial-gradient(circle at 78% 18%,rgba(190,124,77,.52),transparent 28%);color:#fff;text-align:center;padding:clamp(58px,7vw,98px) 0}
.page-hero .eyebrow,.page-hero.inner-panel .eyebrow,.page-hero.support-hero .eyebrow,.page-hero p{display:none!important}
.page-hero h1,.page-hero.inner-panel h1,.page-hero.support-hero h1{margin:0 auto;max-width:1100px;color:#fff;font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;font-weight:500;text-transform:uppercase;letter-spacing:.13em;line-height:1.08;font-size:clamp(2.2rem,5.8vw,4.7rem)}
.page-hero h1::after{content:"";display:block;width:72px;height:2px;margin:28px auto 0;background:rgba(255,255,255,.86)}
.hero-grid.single,.home-hero-copy{grid-template-columns:1fr;max-width:980px;text-align:center}.hero-grid.single .hero-lead,.home-hero-copy .hero-lead{margin-left:auto;margin-right:auto}.hero-grid.single .hero-actions,.home-hero-copy .hero-actions{justify-content:center;margin-top:30px}
.clean-list{display:grid;gap:34px}.artist-strip,.event-strip,.info-strip{display:grid;grid-template-columns:minmax(260px,.36fr) minmax(0,.64fr);gap:0;background:rgba(255,255,255,.9);box-shadow:0 18px 46px rgba(53,50,56,.08)}.artist-strip:nth-child(even),.event-strip:nth-child(even){grid-template-columns:minmax(0,.64fr) minmax(260px,.36fr)}.artist-strip:nth-child(even) .strip-media,.event-strip:nth-child(even) .strip-media{order:2}.strip-media{min-height:420px;background-size:cover;background-position:center}.strip-content{padding:clamp(34px,5vw,72px);display:flex;flex-direction:column;justify-content:center}.strip-content h2,.strip-content h3{margin:0 0 18px;font-family:Georgia,"Times New Roman",serif;letter-spacing:-.025em;line-height:1.12;font-size:clamp(1.75rem,3.2vw,3rem)}.strip-content p{margin:0;color:rgba(53,50,56,.74);font-size:1.02rem}
.minimal-split{display:grid;grid-template-columns:minmax(0,.58fr) minmax(280px,.42fr);gap:clamp(34px,6vw,82px);align-items:start}.minimal-split h2{margin:0 0 18px;font-family:Georgia,"Times New Roman",serif;font-size:clamp(2rem,4vw,4rem);line-height:1.05;letter-spacing:-.04em}.minimal-split p{color:var(--muted);font-size:1.06rem}.detail-minimal{border-top:1px solid var(--line)}.detail-minimal div{display:grid;grid-template-columns:minmax(145px,.35fr) minmax(0,.65fr);gap:20px;padding:18px 0;border-bottom:1px solid var(--line)}.detail-minimal dt{margin:0;color:var(--muted);font-weight:700}.detail-minimal dd{margin:0;color:var(--ink);font-weight:850;overflow-wrap:anywhere}.detail-minimal a{color:var(--oxblood);font-weight:900}.social-icons.clean{margin-top:26px}
.carousel-slide{cursor:zoom-in}.lightbox{position:fixed;inset:0;z-index:200;display:none;align-items:center;justify-content:center;padding:28px;background:rgba(53,50,56,.94)}.lightbox.open{display:flex}.lightbox-frame{position:relative;max-width:min(96vw,1540px);max-height:92vh;padding:clamp(8px,1.2vw,18px);border-radius:26px;background:linear-gradient(135deg,rgba(255,250,246,.96),rgba(193,180,174,.92));box-shadow:0 24px 90px rgba(0,0,0,.42);border:1px solid rgba(255,255,255,.42)}.lightbox-image{display:block;max-width:calc(96vw - 36px);max-height:calc(92vh - 36px);border-radius:18px;object-fit:contain}.lightbox-button{position:absolute;z-index:205;border:1px solid rgba(255,255,255,.35);background:rgba(53,50,56,.72);color:#fff;width:54px;height:54px;border-radius:999px;font-size:34px;line-height:1;cursor:pointer}.lightbox-button:hover{background:rgba(146,20,12,.84)}.lightbox-close{top:22px;right:22px;font-size:28px}.lightbox-prev{left:24px;top:50%;transform:translateY(-50%)}.lightbox-next{right:24px;top:50%;transform:translateY(-50%)}
@media(max-width:900px){.artist-strip,.artist-strip:nth-child(even),.event-strip,.event-strip:nth-child(even),.minimal-split{grid-template-columns:1fr}.artist-strip:nth-child(even) .strip-media,.event-strip:nth-child(even) .strip-media{order:0}.strip-media{min-height:320px}}@media(max-width:700px){.page-hero h1,.page-hero.inner-panel h1,.page-hero.support-hero h1{letter-spacing:.08em}.detail-minimal div{grid-template-columns:1fr;gap:4px}.lightbox{padding:12px}.lightbox-button{width:44px;height:44px}.lightbox-prev{left:8px}.lightbox-next{right:8px}}


/* v12 refinements */
body,
.nav,
.button,
.badge,
.footer,
.detail-minimal,
.card-body,
.strip-content,
.minimal-card-body,
.hero-subtitle {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero h1,
.page-hero h1,
.section-title,
.card h2,
.card h3,
.strip-content h2,
.strip-content h3,
.minimal-card h2,
.minimal-card h3,
.footer h2,
.footer h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.header {
  background: rgba(247, 240, 235, 0.94);
}

.page-hero,
.page-hero.inner-panel,
.page-hero.support-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 54px) 0 clamp(34px, 5vw, 54px) !important;
  text-align: center;
  background:
    linear-gradient(110deg, rgba(53,50,56,.95), rgba(53,50,56,.84)),
    radial-gradient(circle at 78% 18%, rgba(190,124,77,.42), transparent 28%) !important;
}

.page-hero::after,
.page-hero.inner-panel::after,
.page-hero.support-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 44px;
  background: var(--cream);
  clip-path: polygon(0 0, 100% 72%, 100% 100%, 0 100%);
}

.page-hero h1,
.page-hero.inner-panel h1,
.page-hero.support-hero h1 {
  margin: 0 auto !important;
  max-width: 1100px;
  color: #fff !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-weight: 400 !important;
  text-transform: uppercase;
  letter-spacing: .08em !important;
  line-height: 1.06 !important;
  font-size: clamp(1.75rem, 3.8vw, 3rem) !important;
}

.page-hero h1::after,
.page-hero.inner-panel h1::after,
.page-hero.support-hero h1::after {
  content: "";
  display: block;
  width: 66px;
  height: 2px;
  margin: 20px auto 0;
  background: rgba(255,255,255,.8);
}

.hero {
  min-height: 420px;
  padding: clamp(54px, 8vw, 88px) 0;
}

.hero-grid.single,
.home-hero-copy {
  max-width: 900px !important;
}

.home-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.home-brand-logo {
  width: min(290px, 62vw);
  height: auto;
  filter: brightness(0) invert(1);
}

.hero-subtitle {
  margin: 0;
  color: rgba(255,255,255,.88);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: clamp(.92rem, 1.8vw, 1.18rem);
  font-weight: 700;
}

.hero .eyebrow,
.hero .hero-lead {
  display: none !important;
}

.hero-actions {
  justify-content: center;
  margin-top: 20px !important;
}

.band {
  display: none !important;
}

.section-head .eyebrow {
  color: var(--copper);
}

.artist-strip,
.event-row,
.poster-spotlight,
.minimal-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
  background: rgba(255,255,255,.84);
}

.artist-strip,
.event-row {
  overflow: hidden;
}

.strip-media,
.event-row .media,
.poster-frame {
  border-radius: 0;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.event-card-image {
  position: relative;
  min-height: 355px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 20px;
}

.event-card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(53,50,56,.62) 0%, rgba(53,50,56,.05) 55%, rgba(53,50,56,.22) 100%);
}

.event-card-image span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  max-width: none;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,250,246,.9);
  color: var(--ink) !important;
  text-align: left;
  font-size: .88rem;
  line-height: 1.2;
  letter-spacing: .1em;
}

.poster-spotlight {
  grid-template-columns: minmax(240px, .35fr) minmax(0, .65fr);
  gap: 0;
}

.poster-frame {
  padding: 18px;
  background: rgba(255,255,255,.88);
  border-right: 1px solid var(--line);
}

.poster-frame img {
  border-radius: 22px;
}

.poster-spotlight .poster-text {
  padding: clamp(26px, 4vw, 40px);
}

.video-grid.single-column {
  grid-template-columns: 1fr !important;
  gap: 24px;
}

.video-grid.single-column .video-embed {
  aspect-ratio: 16 / 9;
  border-radius: 26px;
}

.minimal-card-grid {
  display: grid;
  grid-template-columns: minmax(0, .56fr) minmax(280px, .44fr);
  gap: 24px;
}

.minimal-card .minimal-card-body {
  padding: clamp(26px, 4vw, 38px);
}

.detail-minimal {
  border-top: 0;
}

.detail-minimal div:first-child {
  padding-top: 0;
}

.social-icons.clean {
  margin-top: 16px;
}

.social-icon-link.youtube {
  border-radius: 18px;
}

@media (max-width: 1020px) {
  .minimal-card-grid,
  .poster-spotlight {
    grid-template-columns: 1fr;
  }

  .poster-frame {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 700px) {
  .page-hero h1,
  .page-hero.inner-panel h1,
  .page-hero.support-hero h1 {
    font-size: clamp(1.5rem, 8vw, 2.1rem) !important;
    letter-spacing: .06em !important;
  }

  .hero-subtitle {
    letter-spacing: .12em;
  }

  .event-card-image {
    min-height: 300px;
  }
}


/* v14 refinements */
:root { --radius: 0px; }
.card, .artist-strip, .event-row, .poster-spotlight, .poster-frame, .minimal-card,
.video-embed, .carousel-track, .official-card, .strip-media, .social-icon-link,
.contact-emphasis, .event-card-image, .artist-photo, .hero-feature-image, .poster-frame img {
  border-radius: 0 !important;
}
.page-hero, .page-hero.inner-panel, .page-hero.support-hero {
  padding: clamp(26px,4vw,42px) 0 clamp(26px,4vw,42px) !important;
}
.page-hero h1, .page-hero.inner-panel h1, .page-hero.support-hero h1 {
  font-size: clamp(1.45rem, 3.2vw, 2.45rem) !important;
  letter-spacing: .07em !important;
}
.home-brand { gap: 12px; }
.hero { min-height: 300px; padding: clamp(42px,6vw,60px) 0 34px; }
.hero-actions { display: none !important; }
.home-projects { padding-top: 26px !important; }
.home-projects .section-head { margin-bottom: 22px; }
.home-projects .eyebrow { display: none !important; }
.home-projects .section-text { margin-top: 10px; }
.event-image-plain { background: transparent; padding: 0; min-height: 0; display: block; }
.event-image-plain img { display:block; width:100%; height:auto; }
.poster-spotlight.compact-two {
  display:grid;
  grid-template-columns: minmax(230px,.36fr) minmax(0,.64fr);
  gap:0;
  align-items:stretch;
}
.poster-spotlight.compact-two .poster-frame {
  border-right: 1px solid var(--line);
  padding: 18px;
}
.poster-right-column {
  padding: clamp(24px, 3.4vw, 36px);
  display:flex;
  flex-direction:column;
  gap:18px;
}
.poster-right-column .video-embed { margin-top: 4px; }
.second-video-block { margin-top: 24px; }
.footer-tagline { max-width: 280px; }
@media (max-width: 960px) {
  .poster-spotlight.compact-two { grid-template-columns: 1fr; }
  .poster-spotlight.compact-two .poster-frame { border-right:0; border-bottom:1px solid var(--line); }
}


/* v15 refinements */
.hero {
  min-height: 390px !important;
  padding: clamp(68px, 9vw, 110px) 0 78px !important;
}
.eyebrow-heading {
  margin: 0;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 850;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  line-height: 1.08;
}
.contact-page .contact-emphasis {
  border-radius: 999px !important;
}
.contact-page .social-icon-link {
  border-radius: 50% !important;
}
.contact-page .social-icon-link.youtube {
  border-radius: 18px !important;
}
@media (max-width: 700px) {
  .hero {
    min-height: 330px !important;
    padding: 56px 0 62px !important;
  }
}


/* v16 refinements */
.hero {
  min-height: 430px !important;
  padding: clamp(44px, 6vw, 72px) 0 96px !important;
}

.home-brand {
  transform: translateY(-18px);
}

.home-brand-logo {
  width: min(300px, 62vw);
}

.hero-subtitle {
  color: rgba(255,255,255,.96) !important;
  text-shadow: 0 2px 18px rgba(53,50,56,.38);
}

.eyebrow-heading {
  color: var(--ink) !important;
  text-transform: uppercase;
  letter-spacing: .07em !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-weight: 400 !important;
  font-size: clamp(1.65rem, 3vw, 2.45rem) !important;
  line-height: 1.08 !important;
}

.footer-grid > div:nth-child(2) {
  text-align: center;
}

.footer-grid > div:nth-child(2) h3 {
  text-align: center;
}

.footer-grid > div:nth-child(2) .footer-links-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  column-gap: 22px;
  row-gap: 7px;
  justify-items: center;
  align-items: start;
}

.footer-grid > div:nth-child(2) .footer-links-columns a {
  display: block;
  margin: 0;
}

@media (max-width: 700px) {
  .hero {
    min-height: 370px !important;
    padding: 42px 0 82px !important;
  }

  .home-brand {
    transform: translateY(-10px);
  }

  .footer-grid > div:nth-child(2) .footer-links-columns {
    grid-template-columns: 1fr 1fr;
  }
}


/* v17 refinements */
.hero {
  min-height: 560px !important;
  padding: clamp(72px, 9vw, 112px) 0 170px !important;
}

.hero::after {
  bottom: -265px !important;
  height: 330px !important;
  transform: rotate(-3.4deg) !important;
}

.home-brand {
  transform: translateY(-48px) !important;
}

.home-brand-logo {
  width: min(315px, 64vw);
}

.hero-subtitle {
  position: relative;
  z-index: 2;
}

/* Footer: two compact link columns + clearly separated contact column */
.footer-grid.footer-grid-links {
  display: grid;
  grid-template-columns: minmax(430px, 0.62fr) minmax(260px, 0.38fr);
  gap: clamp(70px, 12vw, 170px);
  width: 100%;
  align-items: start;
}

.footer-link-area h3,
.footer-contact-area h3 {
  margin: 0 0 18px;
}

.footer-link-area h3 {
  text-align: center;
}

.footer-contact-area h3 {
  text-align: right;
}

.footer-link-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 28px;
}

.footer-link-column {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 8px;
}

.footer-link-column a,
.footer-contact-area a {
  display: block;
  margin: 0;
  text-align: right;
}

.footer-contact-area {
  text-align: right;
}

@media (max-width: 900px) {
  .footer-grid.footer-grid-links {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-link-area h3,
  .footer-contact-area h3 {
    text-align: center;
  }

  .footer-link-column,
  .footer-contact-area {
    align-items: center;
    text-align: center;
  }

  .footer-link-column a,
  .footer-contact-area a {
    text-align: center;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: 460px !important;
    padding: 64px 0 140px !important;
  }

  .hero::after {
    bottom: -250px !important;
    height: 315px !important;
  }

  .home-brand {
    transform: translateY(-28px) !important;
  }

  .footer-link-columns {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}


/* v18 corrections */
.hero {
  min-height: 500px !important;
  padding: clamp(58px, 7.2vw, 88px) 0 135px !important;
}

.hero::after {
  bottom: -250px !important;
  height: 310px !important;
  transform: rotate(-3.4deg) !important;
}

.home-brand {
  transform: translateY(-62px) !important;
}

/* Footer: restore left brand column and place the three link/contact columns on the right */
.footer-grid.footer-grid-with-brand {
  display: grid;
  grid-template-columns: minmax(250px, 0.34fr) minmax(560px, 0.66fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.footer-brand-area {
  text-align: left;
}

.footer-right-area {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(190px, 0.42fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: start;
  justify-self: end;
  width: min(760px, 100%);
}

.footer-link-area h3 {
  text-align: center;
  margin: 0 0 18px;
}

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

.footer-link-column {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 8px;
}

.footer-contact-area {
  text-align: right;
}

.footer-contact-area h3 {
  text-align: right;
  margin: 0 0 18px;
}

.footer-link-column a,
.footer-contact-area a {
  display: block;
  margin: 0;
  text-align: right;
}

.footer-brand-area .footer-logo {
  margin-left: 0;
}

@media (max-width: 1050px) {
  .footer-grid.footer-grid-with-brand {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-right-area {
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: 430px !important;
    padding: 52px 0 120px !important;
  }

  .hero::after {
    bottom: -238px !important;
    height: 300px !important;
  }

  .home-brand {
    transform: translateY(-42px) !important;
  }

  .footer-brand-area,
  .footer-contact-area,
  .footer-contact-area h3 {
    text-align: center;
  }

  .footer-brand-area .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

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

  .footer-link-column {
    align-items: center;
    text-align: center;
  }

  .footer-link-column a,
  .footer-contact-area a {
    text-align: center;
  }
}


/* v19 corrections */
.hero {
  min-height: 400px !important;
  padding: clamp(58px, 7.2vw, 88px) 0 108px !important;
}

.hero::after {
  bottom: -225px !important;
  height: 280px !important;
  transform: rotate(-3.4deg) !important;
}

.home-brand {
  transform: translateY(-62px) !important;
}

/* Keep footer headings as designed, but force all link items to right-align */
.footer-grid.footer-grid-with-brand .footer-link-column {
  align-items: flex-end !important;
  text-align: right !important;
}

.footer-grid.footer-grid-with-brand .footer-link-column a,
.footer-grid.footer-grid-with-brand .footer-contact-area a {
  text-align: right !important;
  align-self: flex-end !important;
}

.footer-grid.footer-grid-with-brand .footer-contact-area {
  text-align: right !important;
}

@media (max-width: 700px) {
  .hero {
    min-height: 344px !important;
    padding: 52px 0 96px !important;
  }

  .hero::after {
    bottom: -214px !important;
    height: 270px !important;
  }

  .footer-grid.footer-grid-with-brand .footer-link-column,
  .footer-grid.footer-grid-with-brand .footer-contact-area {
    align-items: flex-end !important;
    text-align: right !important;
  }

  .footer-grid.footer-grid-with-brand .footer-link-column a,
  .footer-grid.footer-grid-with-brand .footer-contact-area a {
    text-align: right !important;
    align-self: flex-end !important;
  }
}


/* v20 corrections */
.home-brand {
  transform: translateY(-50px) !important;
}

/* Footer: keep headings as they are, but left-align link items/contact items */
.footer-grid.footer-grid-with-brand .footer-link-column {
  align-items: flex-start !important;
  text-align: left !important;
}

.footer-grid.footer-grid-with-brand .footer-link-column a {
  text-align: left !important;
  align-self: flex-start !important;
}

.footer-grid.footer-grid-with-brand .footer-contact-area a {
  display: block;
  width: 100%;
  text-align: left !important;
  align-self: auto !important;
}

@media (max-width: 700px) {
  .home-brand {
    transform: translateY(-32px) !important;
  }

  .footer-grid.footer-grid-with-brand .footer-link-column {
    align-items: flex-start !important;
    text-align: left !important;
  }

  .footer-grid.footer-grid-with-brand .footer-link-column a,
  .footer-grid.footer-grid-with-brand .footer-contact-area a {
    text-align: left !important;
    align-self: flex-start !important;
  }
}


/* v21 corrections */
.hero {
  min-height: 382px !important;
  padding: clamp(58px, 7.2vw, 88px) 0 92px !important;
}

.hero::after {
  bottom: -210px !important;
  height: 262px !important;
  transform: rotate(-3.4deg) !important;
}

/* Keep footer headings in place, but shift the link/contact items slightly right */
.footer-grid.footer-grid-with-brand .footer-link-columns {
  transform: translateX(24px);
}

.footer-grid.footer-grid-with-brand .footer-contact-area a {
  transform: translateX(24px);
}

@media (max-width: 700px) {
  .hero {
    min-height: 330px !important;
    padding: 52px 0 82px !important;
  }

  .hero::after {
    bottom: -202px !important;
    height: 252px !important;
  }

  .footer-grid.footer-grid-with-brand .footer-link-columns,
  .footer-grid.footer-grid-with-brand .footer-contact-area a {
    transform: none;
  }
}


/* v22 correction */
.footer-grid.footer-grid-with-brand .footer-link-columns {
  transform: translateX(36px) !important;
}

.footer-grid.footer-grid-with-brand .footer-contact-area a {
  transform: translateX(36px) !important;
}

@media (max-width: 700px) {
  .footer-grid.footer-grid-with-brand .footer-link-columns,
  .footer-grid.footer-grid-with-brand .footer-contact-area a {
    transform: none !important;
  }
}


/* v23 mobile artist-photo adjustment */
/* Only affects narrow screens; full desktop layout is unchanged. */
@media (max-width: 900px) {
  .artist-marius-mobile {
    background-position: center 28% !important;
  }

  .artist-petro-mobile {
    background-position: center 24% !important;
  }
}


/* v26 mobile artist-photo correction */
/* On narrow screens, Marius and Petro photos are anchored to the top,
   so the crop happens from the bottom rather than cutting the face/head area. */
@media (max-width: 900px) {
  .artist-marius-mobile,
  .artist-petro-mobile {
    background-position: center top !important;
  }
}


/* v27 robust mobile artist-photo correction */
/* For Marius and Petro, use real <img> cropping instead of CSS background cropping.
   This makes the narrow-window crop reliable: the top remains visible and the bottom is cropped. */
.artist-photo-frame {
  background: none !important;
  overflow: hidden;
  min-height: 420px;
}

.artist-photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

@media (max-width: 900px) {
  .artist-photo-frame {
    height: 320px !important;
    min-height: 320px !important;
  }

  .artist-photo-frame img {
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
    object-position: center top !important;
  }
}


/* v29 definitive artist photo replacement */
/* Artist photos use the newly supplied files, with no CSS-background mix-ups.
   The image fills its panel so there is no strange white area below it on desktop. */
.artist-image-panel {
  background: none !important;
  overflow: hidden;
  min-height: 420px;
  display: flex;
}

.artist-image-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 900px) {
  .artist-image-panel {
    min-height: 0 !important;
    height: auto !important;
    display: block;
  }

  .artist-image-panel img {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    object-fit: contain !important;
    object-position: center center !important;
  }
}
