:root {
  --color-ink: #161616;
  --color-text: #33312d;
  --color-muted: #6c675f;
  --color-bg: #fbfaf7;
  --color-surface: #ffffff;
  --color-soft: #f1eee8;
  --color-line: #ded8cf;
  --color-accent: #23352f;
  --color-accent-2: #8a6f4d;
  --color-cta: #f6c84c;
  --color-cta-hot: #ff6b4a;
  --color-cta-cool: #33d6c5;
  --color-focus: #0b7cff;
  --shadow-soft: 0 24px 60px rgba(29, 27, 24, 0.10);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 999px;
  --container: 1180px;
  --section-space: clamp(4rem, 8vw, 7.5rem);
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--color-bg);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-bg) !important;
  color: var(--color-text) !important;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
}

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

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-cta) 0%, var(--color-cta-hot) 48%, var(--color-cta-cool) 100%);
  color: #11130f;
  padding: 0.78rem 1.05rem;
  box-shadow: 0 18px 46px rgba(255, 107, 74, 0.32);
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
  box-shadow: 0 22px 62px rgba(51, 214, 197, 0.34);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(222, 216, 207, 0.58);
  background: rgba(251, 250, 247, 0.86);
  backdrop-filter: blur(22px);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-ink);
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  background: var(--color-surface);
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.7rem, 1.6vw, 1.35rem);
  font-size: 0.93rem;
}

.nav-menu a {
  color: var(--color-text);
  font-weight: 650;
  text-decoration: none;
}

.nav-menu a:hover {
  color: var(--color-accent);
}

.nav-menu .nav-cta {
  border: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-cta) 0%, var(--color-cta-hot) 100%);
  color: #11130f;
  padding: 0.65rem 1rem;
  box-shadow: 0 12px 28px rgba(255, 107, 74, 0.2);
}

.nav-menu .nav-cta:hover {
  color: #11130f;
  background: linear-gradient(135deg, #ffe27a 0%, #ff7b59 100%);
  box-shadow: 0 16px 36px rgba(255, 107, 74, 0.28);
}

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.25rem auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.section {
  padding-block: var(--section-space);
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.align-start {
  align-items: start;
}

.section-muted {
  background: var(--color-soft);
}

.section-dark {
  background: var(--color-accent);
  color: var(--color-surface);
}

.concert-feature {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #f7f8f6 0%, #edf3f2 48%, #f6f1e7 100%);
  color: var(--color-text);
  padding-block: clamp(1.8rem, 3.6vw, 3rem);
}

.concert-feature::before,
.concert-feature::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.concert-feature::before {
  background:
    linear-gradient(90deg, rgba(14, 95, 104, 0.14) 1px, transparent 1px),
    linear-gradient(0deg, rgba(14, 95, 104, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.62), transparent 72%);
  opacity: 0.55;
}

.concert-feature::after {
  background:
    radial-gradient(circle at 88% 16%, rgba(51, 214, 197, 0.18), transparent 24rem),
    radial-gradient(circle at 16% 84%, rgba(255, 107, 74, 0.12), transparent 22rem);
  opacity: 0.9;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--color-accent-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #d7c6a7;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.3rem, 2.1vw, 1.7rem);
}

.section-dark h2 {
  color: var(--color-surface);
}

h1 {
  max-width: 14ch;
  font-size: clamp(2.4rem, 6vw, 5rem);
}

h2 {
  margin-bottom: 1.35rem;
  font-size: clamp(2.35rem, 5vw, 4.9rem);
}

p {
  margin: 0 0 1rem;
}

.lead,
.hero-subtitle {
  color: var(--color-ink);
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  line-height: 1.45;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  width: 100%;
  min-height: calc(100vh - 74px);
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) max(1rem, calc((100vw - 1180px) / 2)) clamp(6.5rem, 8vw, 7.5rem);
  background: #11130f;
  color: var(--color-surface);
  text-align: center;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.hero::before {
  background:
    radial-gradient(circle at 50% 42%, rgba(10, 13, 11, 0.34) 0%, rgba(10, 13, 11, 0.62) 48%, rgba(10, 13, 11, 0.86) 100%),
    linear-gradient(0deg, rgba(10, 13, 11, 0.78) 0%, rgba(10, 13, 11, 0.22) 52%, rgba(10, 13, 11, 0.36) 100%);
}

.hero::after {
  background:
    radial-gradient(circle at 24% 24%, rgba(51, 214, 197, 0.18), transparent 21rem),
    radial-gradient(circle at 76% 68%, rgba(255, 107, 74, 0.18), transparent 24rem),
    linear-gradient(135deg, rgba(246, 200, 76, 0.12), transparent 44%);
  mix-blend-mode: screen;
  opacity: 0.82;
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  width: min(100%, 920px);
  margin-inline: auto;
}

.hero-intro {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
}

.hero h1,
.hero .hero-subtitle {
  color: var(--color-surface);
}

.hero .hero-subtitle {
  max-width: 48rem;
}

.hero .eyebrow {
  color: #d7c6a7;
}

.hero h1 {
  max-width: 13ch;
  text-wrap: balance;
  text-shadow: 0 20px 70px rgba(0, 0, 0, 0.38);
}

.hero h1 span {
  display: block;
}

.hero .button-secondary,
.hero .button-ghost {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-surface);
  backdrop-filter: blur(14px);
}

.hero .button-secondary:hover,
.hero .button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.22);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.25rem;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--color-cta) 0%, var(--color-cta-hot) 100%);
  color: #11130f;
  box-shadow: 0 16px 34px rgba(255, 107, 74, 0.22);
}

.button-primary:hover {
  background: linear-gradient(135deg, #ffe27a 0%, #ff7b59 100%);
  box-shadow: 0 20px 44px rgba(255, 107, 74, 0.3);
}

.button-secondary {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-surface);
}

.button-ghost {
  border-color: var(--color-line);
  background: transparent;
  color: var(--color-ink);
}

.button-light {
  align-self: center;
  background: linear-gradient(135deg, var(--color-cta) 0%, var(--color-cta-hot) 100%);
  color: #11130f;
  box-shadow: 0 16px 34px rgba(255, 107, 74, 0.2);
}

.section-dark .lead {
  color: var(--color-surface);
}

.carousel {
  position: relative;
  min-height: clamp(360px, 68vh, 760px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-line);
  box-shadow: var(--shadow-soft);
}

.hero .carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 0;
  border-radius: 0;
  background: #11130f;
  box-shadow: none;
}

.carousel-track,
.carousel-slide,
.carousel-slide img {
  width: 100%;
  height: 100%;
}

.carousel-track {
  position: absolute;
  inset: 0;
}

.hero .carousel-track {
  inset: -10vh 0;
  height: auto;
  transform: translate3d(0, var(--hero-parallax, 0px), 0);
  will-change: transform;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1000ms ease, transform 1400ms ease;
}

.carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.carousel-slide img {
  object-fit: cover;
  object-position: center;
}

.hero .carousel-slide.is-active img {
  animation: hero-image-drift 5200ms ease-out both;
}

.hero .carousel-slide:nth-child(3n + 1) img {
  object-position: center 42%;
}

.hero .carousel-slide:nth-child(3n + 2) img {
  object-position: 48% center;
}

.hero .carousel-slide:nth-child(3n + 3) img {
  object-position: 56% center;
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(22, 22, 22, 0.36);
  color: var(--color-surface);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.hero .carousel-control {
  top: auto;
  bottom: clamp(1.25rem, 3vw, 2.25rem);
  width: 3.4rem;
  height: 3.4rem;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  font-size: 2.2rem;
  transform: none;
}

.carousel-prev {
  left: 1rem;
}

.carousel-next {
  right: 1rem;
}

.hero .carousel-prev {
  right: calc(max(1rem, (100vw - 1180px) / 2) + 4.2rem);
  left: auto;
}

.hero .carousel-next {
  right: max(1rem, calc((100vw - 1180px) / 2));
}

.carousel-dots {
  position: absolute;
  right: 0;
  bottom: 1rem;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.hero .carousel-dots {
  right: 50%;
  bottom: clamp(1.55rem, 3vw, 2.6rem);
  left: auto;
  max-width: min(74rem, calc(100% - 13rem));
  justify-content: center;
  gap: 0.42rem;
  transform: translateX(50%);
}

.carousel-dot {
  width: 0.62rem;
  height: 0.62rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.hero .carousel-dot {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  transition: width 240ms ease, background 240ms ease, transform 240ms ease;
}

.hero .carousel-dot.is-active {
  width: 1.75rem;
  background: linear-gradient(90deg, var(--color-cta), var(--color-cta-hot));
  transform: translateY(-1px);
}

.carousel-dot.is-active {
  background: var(--color-surface);
}

@keyframes hero-image-drift {
  from {
    transform: scale(1.08) translate3d(1.2%, 0, 0);
  }

  to {
    transform: scale(1.02) translate3d(-1.2%, 0, 0);
  }
}

.card {
  border: 1px solid rgba(222, 216, 207, 0.9);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: 0 16px 40px rgba(29, 27, 24, 0.07);
}

.concert-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-areas:
    "date copy visual";
  grid-template-columns: 5.7rem minmax(0, 1fr) minmax(250px, 0.5fr);
  gap: clamp(0.85rem, 2.4vw, 1.8rem);
  align-items: stretch;
}

.concert-copy {
  grid-area: copy;
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 210px;
  border-block: 1px solid rgba(14, 95, 104, 0.18);
  padding-block: clamp(0.85rem, 2.4vw, 1.65rem);
}

.concert-feature .eyebrow {
  color: #0e5f68;
}

.concert-feature h2 {
  max-width: 13ch;
  margin-bottom: 0.5rem;
  color: #11130f;
  font-size: clamp(2.2rem, 4.25vw, 4.45rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.concert-feature .lead {
  max-width: 34rem;
  color: #40514d;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}

.concert-date {
  grid-area: date;
  display: grid;
  align-content: start;
  justify-items: start;
  border-left: 1px solid rgba(14, 95, 104, 0.24);
  padding: clamp(0.85rem, 2.4vw, 1.65rem) 0 0 0.7rem;
}

.concert-day {
  color: #0e5f68;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 4.45vw, 4.45rem);
  line-height: 0.78;
  letter-spacing: -0.07em;
}

.concert-month,
.concert-year {
  color: #23352f;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.concert-year {
  color: #7f8d88;
}

.concert-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.concert-feature .button-ghost {
  border-color: rgba(14, 95, 104, 0.34);
  background: rgba(255, 255, 255, 0.58);
  color: #0e5f68;
  backdrop-filter: blur(12px);
}

.concert-feature .button-primary {
  background: linear-gradient(135deg, var(--color-cta) 0%, var(--color-cta-hot) 100%);
  color: #11130f;
  box-shadow: 0 14px 30px rgba(255, 107, 74, 0.2);
}

.concert-feature .button-primary:hover {
  background: linear-gradient(135deg, #ffe27a 0%, #ff7b59 100%);
  box-shadow: 0 18px 38px rgba(255, 107, 74, 0.28);
}

.concert-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.concert-highlights span {
  border: 1px solid rgba(14, 95, 104, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: #40514d;
  padding: 0.42rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 750;
  backdrop-filter: blur(12px);
}

.concert-visual {
  position: relative;
  grid-area: visual;
  align-self: stretch;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  background: #d8dedb;
}

.concert-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.04);
}

.concert-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14, 20, 17, 0.44), transparent 54%);
  content: "";
}

.concert-visual figcaption {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 2rem;
  z-index: 1;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.concert-card {
  grid-area: card;
  display: none;
  align-self: end;
  border-color: rgba(14, 95, 104, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.74);
  color: var(--color-text);
  padding: clamp(0.85rem, 1.65vw, 1.1rem);
  box-shadow: 0 22px 62px rgba(36, 47, 43, 0.12);
  backdrop-filter: blur(18px);
}

.concert-card-header {
  margin-bottom: 0.75rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(35, 53, 47, 0.16);
}

.concert-card-header .eyebrow {
  color: var(--color-accent-2);
}

.concert-card-header p:last-child {
  margin: 0;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.45;
}

.concert-details {
  display: grid;
  gap: 0.9rem;
  margin: 0;
}

.concert-details dt {
  margin-bottom: 0.18rem;
  color: var(--color-accent-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.concert-details dd {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.5;
}

.support-note {
  margin: 1rem 0 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.upcoming-section {
  padding-block: clamp(2.6rem, 4.8vw, 4rem);
  background:
    linear-gradient(180deg, #fbfaf7 0%, #f1f4ef 100%);
}

.upcoming-panel {
  max-width: 1060px;
  border-top: 1px solid rgba(35, 53, 47, 0.14);
  border-bottom: 1px solid rgba(35, 53, 47, 0.1);
  padding-block: clamp(1rem, 2vw, 1.35rem);
}

.upcoming-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem 1rem;
  align-items: end;
  margin-bottom: clamp(0.9rem, 2.3vw, 1.35rem);
  border-bottom: 1px solid rgba(35, 53, 47, 0.18);
  padding-bottom: 0.85rem;
}

.upcoming-header .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.upcoming-header h2 {
  max-width: 18ch;
  margin-bottom: 0;
  font-size: clamp(1.95rem, 3.6vw, 3.35rem);
  line-height: 1.02;
}

.upcoming-controls {
  display: flex;
  gap: 0.55rem;
}

.upcoming-control {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  border: 1px solid rgba(35, 53, 47, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: #243a34;
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.upcoming-control:hover {
  border-color: rgba(35, 53, 47, 0.38);
  background: #ffffff;
  transform: translateY(-1px);
}

.upcoming-carousel {
  --upcoming-gap: clamp(0.85rem, 1.8vw, 1.15rem);
  overflow: hidden;
}

.upcoming-grid {
  display: flex;
  gap: var(--upcoming-gap);
  transform: translate3d(calc(var(--upcoming-index, 0) * -1 * ((100% - var(--upcoming-gap)) / 2 + var(--upcoming-gap))), 0, 0);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.upcoming-card {
  flex: 0 0 calc((100% - var(--upcoming-gap)) / 2);
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(35, 53, 47, 0.14);
  border-radius: 8px;
  background: #fdfcf8;
  box-shadow: 0 16px 42px rgba(24, 29, 27, 0.1);
}

.upcoming-card img {
  width: 100%;
  aspect-ratio: 1.72 / 1;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.upcoming-card-body {
  display: grid;
  align-content: start;
  min-height: 285px;
  padding: clamp(0.9rem, 1.55vw, 1.15rem);
}

.upcoming-card h3 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.28rem, 1.75vw, 1.62rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.03;
}

.upcoming-date {
  margin-bottom: 0.5rem;
  color: inherit;
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  font-weight: 850;
  line-height: 1;
}

.upcoming-place {
  margin-bottom: 0.75rem;
  font-weight: 800;
}

.upcoming-card dl {
  display: grid;
  gap: 0.5rem;
  margin: 0;
}

.upcoming-card dt {
  margin-bottom: 0.08rem;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.upcoming-card dd {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.36;
}

.upcoming-note {
  align-self: end;
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
}

.upcoming-card-dark .upcoming-card-body {
  background: #243a34;
  color: #f6f1dc;
}

.upcoming-card-dark h3,
.upcoming-card-dark .upcoming-place,
.upcoming-card-dark dt,
.upcoming-card-dark dd,
.upcoming-card-dark .upcoming-note {
  color: #f8f3e6;
}

.upcoming-card-dark .upcoming-date {
  color: #f3d46c;
}

.upcoming-card-warm .upcoming-card-body {
  background: #dfe9e6;
  color: #18302e;
}

.upcoming-card-warm h3,
.upcoming-card-warm dt,
.upcoming-card-warm .upcoming-place,
.upcoming-card-warm dd,
.upcoming-card-warm .upcoming-note {
  color: #18302e;
}

.upcoming-card-warm .upcoming-date {
  color: #0e5f68;
}

.upcoming-card-rose .upcoming-card-body {
  background: #e6b5bc;
  color: #182023;
}

.upcoming-card-rose h3,
.upcoming-card-rose dt,
.upcoming-card-rose dd,
.upcoming-card-rose .upcoming-place {
  color: #182023;
}

.upcoming-card-rose .upcoming-date {
  color: #182023;
}

.ticket-note {
  margin: 1.25rem 0 0;
  color: var(--color-muted);
  font-weight: 700;
}

.about-visual img,
.rounded-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.about-visual img {
  aspect-ratio: 4 / 3;
}

.rounded-image {
  max-height: 560px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.highlight-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  padding: 1rem;
}

.highlight-card strong,
.highlight-card span {
  display: block;
}

.highlight-card strong {
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}

.highlight-card span {
  margin-top: 0.35rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.member-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.member-panel p {
  max-width: 660px;
}

.member-panel a:not(.button) {
  color: var(--color-surface);
  font-weight: 750;
}

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

.video-frame {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #000;
  box-shadow: 0 16px 40px rgba(29, 27, 24, 0.08);
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 36px rgba(29, 27, 24, 0.09);
  object-fit: cover;
}

.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(4) {
  grid-column: span 7;
}

.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(3) {
  grid-column: span 5;
}

.gallery-grid img:nth-child(5),
.gallery-grid img:nth-child(6),
.gallery-grid img:nth-child(7) {
  grid-column: span 4;
}

.contact-card {
  margin: 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  font-style: normal;
}

.site-footer {
  border-top: 1px solid var(--color-line);
  background: var(--color-ink);
  color: var(--color-surface);
  padding: 1.4rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--color-surface);
  font-weight: 700;
  text-decoration: none;
}

.footer-support-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 0.4rem;
  font-size: 0.76rem;
  color: #ddd6cb;
}

.footer-support-row span {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-support-row a img {
  width: auto;
  height: 22px;
  filter: saturate(0.95) brightness(0.98);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    border: 0 solid var(--color-line);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
    transition: max-height 220ms ease, border-width 220ms ease;
  }

  .nav-menu.is-open {
    max-height: 520px;
    border-width: 1px;
  }

  .nav-menu a {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--color-line);
  }

  .nav-menu a:last-child {
    border-bottom: 0;
  }

  .nav-menu .nav-cta {
    margin: 0.75rem 1rem;
    text-align: center;
  }

  .hero,
  .two-column {
    grid-template-columns: 1fr;
  }

  .concert-shell {
    grid-template-areas:
      "date copy"
      "visual visual"
      "card card";
    grid-template-columns: 5.4rem minmax(0, 1fr);
  }

  .concert-feature h2 {
    max-width: 13ch;
  }

  .concert-copy {
    min-height: auto;
  }

  .concert-visual {
    min-height: 220px;
    clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
  }

  .hero {
    min-height: calc(88vh - 74px);
    padding-inline: 1.5rem;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(10, 13, 11, 0.9) 0%, rgba(10, 13, 11, 0.72) 52%, rgba(10, 13, 11, 0.34) 100%),
      linear-gradient(0deg, rgba(10, 13, 11, 0.76) 0%, rgba(10, 13, 11, 0.2) 58%, rgba(10, 13, 11, 0.26) 100%);
  }

  h1 {
    max-width: 10ch;
  }

  .carousel {
    min-height: clamp(330px, 58vw, 520px);
  }

  .member-panel,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .upcoming-grid {
    display: flex;
    transform: translate3d(calc(var(--upcoming-index, 0) * -1 * (100% + var(--upcoming-gap))), 0, 0);
  }

  .upcoming-card {
    flex-basis: 100%;
  }

  .upcoming-header h2 {
    max-width: 12ch;
  }

  .upcoming-card-body {
    min-height: auto;
  }

  .footer-support-row {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 0.98rem;
  }

  .brand span:last-child {
    max-width: min(12rem, calc(100vw - 8rem));
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav {
    width: min(100% - 1rem, var(--container));
  }

  .nav-toggle {
    flex: 0 0 auto;
    position: fixed;
    top: 0.92rem;
    right: 0.75rem;
    z-index: 120;
  }

  .section {
    padding-block: 3.75rem;
  }

  .upcoming-section {
    padding-block: 2.4rem;
  }

  .concert-feature {
    padding-block: 1.45rem;
  }

  .upcoming-header {
    grid-template-columns: 1fr;
  }

  .upcoming-controls {
    justify-self: start;
  }

  .concert-feature::before {
    background:
      linear-gradient(90deg, rgba(14, 95, 104, 0.14) 1px, transparent 1px),
      linear-gradient(0deg, rgba(14, 95, 104, 0.12) 1px, transparent 1px);
    background-size: 48px 48px;
  }

  .concert-copy,
  .concert-actions {
    justify-items: stretch;
    width: 100%;
  }

  .concert-shell {
    grid-template-areas:
      "date"
      "copy"
      "visual";
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .concert-copy {
    border-block: 1px solid rgba(14, 95, 104, 0.18);
    padding-block: 0.7rem;
  }

  .concert-feature h2 {
    max-width: 12.5ch;
    font-size: clamp(1.75rem, 8vw, 2.55rem);
    margin-bottom: 0.35rem;
    line-height: 0.96;
  }

  .concert-feature .lead {
    font-size: 0.94rem;
    margin-bottom: 0.45rem;
  }

  .concert-date {
    display: inline-grid;
    grid-template-columns: auto auto;
    justify-self: start;
    gap: 0.55rem 0.75rem;
    align-items: end;
    width: fit-content;
    border-top: 1px solid rgba(14, 95, 104, 0.24);
    border-left: 0;
    padding: 0.45rem 0 0;
  }

  .concert-day {
    font-size: clamp(2.55rem, 12vw, 3.7rem);
  }

  .concert-month {
    align-self: center;
  }

  .concert-year {
    grid-column: 2;
    margin-top: -0.35rem;
  }

  .concert-actions {
    gap: 0.55rem;
    margin-top: 0.55rem;
  }

  .concert-actions .button {
    width: 100%;
    min-height: 2.75rem;
  }

  .concert-highlights {
    display: none;
  }

  .concert-visual {
    min-height: 150px;
    clip-path: none;
  }

  .concert-visual figcaption {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }

  .concert-card {
    display: none;
  }

  .hero {
    width: 100%;
    min-height: calc(100svh - 74px);
    padding: 4.5rem 1rem 7rem;
  }

  .hero h1 {
    max-width: min(100%, 22rem);
    font-size: clamp(2.15rem, 8.8vw, 3rem);
  }

  .hero .hero-subtitle {
    max-width: 21rem;
    font-size: 1.12rem;
    line-height: 1.35;
  }

  .hero-intro {
    max-width: 20rem;
    font-size: 1rem;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(10, 13, 11, 0.88) 0%, rgba(10, 13, 11, 0.54) 52%, rgba(10, 13, 11, 0.34) 100%),
      linear-gradient(90deg, rgba(10, 13, 11, 0.86) 0%, rgba(10, 13, 11, 0.46) 100%);
  }

  .hero .carousel-dots {
    bottom: 2.1rem;
    left: 1rem;
  }

  .hero .carousel-prev {
    right: 4.8rem;
  }

  .hero .carousel-next {
    right: 1rem;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .carousel {
    min-height: 360px;
    border-radius: 22px;
  }

  .carousel-control {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.6rem;
  }

  #video,
  #galleri {
    padding-block: 3rem;
  }

  #video h2,
  #galleri h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
    line-height: 1.05;
  }

  .video-grid {
    display: flex;
    grid-template-columns: none;
    gap: 0.85rem;
    margin-inline: -1rem;
    padding: 0 1rem 0.45rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .video-grid::-webkit-scrollbar {
    display: none;
  }

  .video-frame {
    flex: 0 0 min(86vw, 360px);
    border-radius: 16px;
    aspect-ratio: 16 / 9;
    scroll-snap-align: start;
    box-shadow: 0 12px 28px rgba(29, 27, 24, 0.12);
  }

  .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 0.65rem;
  }

  .highlight-card {
    min-height: 0;
    border-radius: 14px;
    padding: 0.75rem;
  }

  .highlight-card strong {
    font-size: 1.35rem;
  }

  .highlight-card span {
    margin-top: 0.22rem;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .highlight-card.wide {
    grid-column: auto;
  }

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

  .gallery-grid img,
  .gallery-grid img:nth-child(n) {
    grid-column: auto;
    min-height: 0;
    border-radius: 14px;
    aspect-ratio: 4 / 3;
    box-shadow: 0 10px 24px rgba(29, 27, 24, 0.1);
  }

  .gallery-grid img:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 2 / 1;
  }
}

@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;
  }
}
:root {
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  html,
  body {
    background: var(--color-bg) !important;
    color: var(--color-text) !important;
  }
}

body,
.site-header,
.section,
.section-muted,
.card,
.nav-menu,
.brand-mark,
.highlight-card,
.contact-card {
  forced-color-adjust: none;
}
