:root {
  --bg: #08110d;
  --bg-soft: #0e1a15;
  --surface: rgba(16, 29, 24, 0.82);
  --surface-strong: rgba(12, 21, 17, 0.94);
  --surface-card: rgba(18, 32, 26, 0.9);
  --line: rgba(214, 183, 118, 0.16);
  --gold: #d7b776;
  --gold-soft: #f4ddac;
  --text: #f7f1e3;
  --muted: #bcc0b4;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1180px, calc(100% - 1.25rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  min-width: 320px;
  width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
  overscroll-behavior-y: none;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(58, 100, 77, 0.28), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(215, 183, 118, 0.12), transparent 16%),
    linear-gradient(180deg, #06100d 0%, #0a1512 48%, #08100d 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    radial-gradient(circle at 18% 22%, rgba(128, 166, 121, 0.08), transparent 18%),
    radial-gradient(circle at 78% 18%, rgba(215, 183, 118, 0.08), transparent 16%),
    radial-gradient(circle at 62% 72%, rgba(90, 122, 100, 0.08), transparent 20%),
    radial-gradient(circle at 30% 82%, rgba(215, 183, 118, 0.05), transparent 14%),
    repeating-linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.018) 0 1px,
      rgba(8, 17, 13, 0) 1px 7px
    ),
    repeating-linear-gradient(
      25deg,
      rgba(215, 183, 118, 0.014) 0 1px,
      rgba(8, 17, 13, 0) 1px 9px
    );
  mix-blend-mode: soft-light;
}

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

a {
  color: inherit;
}

.page-shell {
  position: relative;
  overflow: clip;
  width: 100%;
  overscroll-behavior: none;
}

.ambient {
  position: absolute;
  width: 24rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.22;
}

.ambient-left {
  top: 7rem;
  left: -12rem;
  background: radial-gradient(circle, rgba(126, 192, 140, 0.55), transparent 65%);
}

.ambient-right {
  top: 24rem;
  right: -12rem;
  background: radial-gradient(circle, rgba(215, 183, 118, 0.46), transparent 65%);
}

.site-header {
  width: var(--container);
  margin: 0 auto;
  padding: 0.9rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  padding-top: 0.7rem;
}

.brand-group {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  min-width: 0;
  gap: 0.05rem;
}

.brand-copy strong {
  color: var(--gold-soft);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.brand-socials {
  display: none;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.2rem;
  padding: 0.2rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 183, 118, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.lang-link {
  min-width: 2.35rem;
  min-height: 2.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.7rem;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.lang-link:hover,
.lang-link:focus-visible {
  color: var(--gold-soft);
  transform: translateY(-1px);
}

.lang-link.is-active {
  background: rgba(215, 183, 118, 0.16);
  color: var(--gold-soft);
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  left: 0;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

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

.site-nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 241, 227, 0.9);
  padding: 0.15rem 0 0.45rem;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(215, 183, 118, 0.85), rgba(244, 221, 172, 0.18));
  transform: scaleX(0.32);
  transform-origin: left center;
  opacity: 0.45;
  transition: transform 220ms ease, opacity 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-soft);
  transform: translateY(-1px);
}

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

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
  cursor: pointer;
}

main {
  width: var(--container);
  margin: 0 auto;
  padding-bottom: 4rem;
}

section {
  position: relative;
}

#hero,
#about,
#concerts,
#contact {
  scroll-margin-top: 6rem;
}

.hero {
  padding: 1.25rem 0 2rem;
}

.hero-copy {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 22rem;
  padding: 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(214, 183, 118, 0.05);
  background:
    linear-gradient(135deg, rgba(6, 14, 11, 0.96) 0%, rgba(6, 14, 11, 0.84) 42%, rgba(6, 14, 11, 0.3) 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

.hero-copy > *:not(.hero-copy-image) {
  position: relative;
  z-index: 1;
}

.hero-copy-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-copy-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(6, 14, 11, 0.94) 0%, rgba(6, 14, 11, 0.84) 34%, rgba(6, 14, 11, 0.5) 58%, rgba(6, 14, 11, 0.2) 78%, rgba(6, 14, 11, 0.32) 100%);
}

.hero-copy-image::before {
  content: "";
  position: absolute;
  inset: -8% -18%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 244, 214, 0.12), transparent 28%),
    linear-gradient(115deg, transparent 12%, rgba(255, 239, 196, 0.14) 34%, transparent 56%);
  mix-blend-mode: screen;
  opacity: 0.42;
  transform: translate3d(-4%, 0, 0);
  animation: heroGlowDrift 16s ease-in-out infinite alternate;
}

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

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
}

h1 {
  margin-top: 0.65rem;
  font-size: clamp(3rem, 11vw, 4.8rem);
  max-width: 9ch;
}

h1 span {
  color: var(--gold-soft);
}

.hero-text,
.about-copy p,
.section-heading p,
.concert-copy p,
.contact-card span {
  color: var(--muted);
}

.hero-text {
  max-width: 36rem;
  margin: 1.1rem 0 0;
  font-size: 1rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  position: relative;
  overflow: hidden;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -38%;
  width: 32%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.16) 45%, transparent 100%);
  opacity: 0;
  transform: skewX(-18deg);
  transition: transform 420ms ease, opacity 220ms ease;
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
  transform: translateX(420%) skewX(-18deg);
}

.button-primary {
  background: linear-gradient(135deg, #d7b776 0%, #f2e2b9 100%);
  color: #1b1407;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(215, 183, 118, 0.12);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--text);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 16px 34px rgba(215, 183, 118, 0.2);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.section-grid,
.music,
.concerts,
.contact {
  margin-top: 4rem;
}

.section-grid,
.contact-grid {
  display: grid;
}

.section-grid {
  gap: 1.5rem;
}

.section-heading h2 {
  margin-top: 0.45rem;
  font-size: clamp(2.35rem, 8vw, 3.6rem);
  max-width: 11ch;
}

.section-heading p:not(.eyebrow),
.about-copy p {
  font-size: 1rem;
  line-height: 1.9;
}

.about-highlight {
  margin-top: 1.1rem;
  color: var(--gold-soft);
  font-size: 1rem;
}

.member-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.2rem;
}

.member-list p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.member-list strong {
  color: var(--text);
  font-weight: 700;
}

.music-stack {
  width: min(100%, 31.5rem);
  margin: 0 auto;
}

.audio-card {
  position: relative;
  width: 100%;
  margin: 0.85rem 0 0;
  padding: 1.05rem 1.05rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(214, 183, 118, 0.16);
  background:
    radial-gradient(circle at top right, rgba(215, 183, 118, 0.08), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 52%),
    linear-gradient(180deg, rgba(10, 20, 16, 0.94), rgba(14, 26, 21, 0.8));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -18px 30px rgba(0, 0, 0, 0.08),
    0 22px 48px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.audio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 24%, rgba(128, 166, 121, 0.12), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(215, 183, 118, 0.1), transparent 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 22%);
}

.audio-card::after {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 1rem;
  right: 1rem;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(215, 183, 118, 0), rgba(215, 183, 118, 0.6), rgba(215, 183, 118, 0));
  opacity: 0.7;
}

.audio-card-head,
.audio-progress,
.audio-time {
  display: flex;
}

.audio-card-head {
  position: relative;
  z-index: 1;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.2rem;
}

.audio-toggle {
  min-width: 7.4rem;
  min-height: 3.25rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(214, 183, 118, 0.22);
  border-radius: 999px;
  background: linear-gradient(135deg, #d7b776 0%, #f2e2b9 100%);
  color: #1b1407;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 12px 30px rgba(215, 183, 118, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.audio-toggle:hover,
.audio-toggle:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 16px 34px rgba(215, 183, 118, 0.24);
  filter: brightness(1.02);
}

.audio-toggle-pause {
  display: none;
}

.audio-card.is-playing .audio-toggle-play {
  display: none;
}

.audio-card.is-playing .audio-toggle-pause {
  display: inline;
}

.audio-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.08rem;
}

.audio-kicker {
  margin: 0 0 0.2rem;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.audio-copy h3 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 0.92;
  text-shadow: 0 1px 18px rgba(215, 183, 118, 0.06);
}

.audio-progress {
  position: relative;
  z-index: 1;
  margin-top: 0.9rem;
  flex-direction: column;
  gap: 0.48rem;
}

.audio-seek {
  width: 100%;
  margin: 0;
  appearance: none;
  background: transparent;
}

.audio-seek::-webkit-slider-runnable-track {
  height: 0.45rem;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(242, 226, 185, 0.95), rgba(215, 183, 118, 0.85));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 0 1px rgba(214, 183, 118, 0.08);
}

.audio-seek::-webkit-slider-thumb {
  appearance: none;
  width: 0.95rem;
  height: 0.95rem;
  margin-top: -0.24rem;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff7e3, #e5ca8e 62%, #c39b4f 100%);
  box-shadow:
    0 0 0 4px rgba(215, 183, 118, 0.16),
    0 8px 18px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

.audio-seek::-moz-range-track {
  height: 0.45rem;
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(242, 226, 185, 0.95), rgba(215, 183, 118, 0.85));
}

.audio-seek::-moz-range-thumb {
  width: 0.95rem;
  height: 0.95rem;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff7e3, #e5ca8e 62%, #c39b4f 100%);
  box-shadow:
    0 0 0 4px rgba(215, 183, 118, 0.16),
    0 8px 18px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

.audio-time {
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.audio-element {
  display: none;
}

.music-youtube-link {
  width: 100%;
  margin: 0.85rem 0 0;
  display: flex;
  justify-content: center;
}

.contact-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.concert-list {
  display: grid;
  gap: 0;
}

.older-concerts {
  margin-top: 0.35rem;
}

.older-concerts[hidden] {
  display: none;
}

.older-concerts-toggle {
  margin-top: 1.2rem;
}

.concert-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.concert-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.concert-date {
  display: grid;
  gap: 0.2rem;
}

.concert-date span {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.concert-date strong {
  font-size: 2rem;
}

.concert-copy h3 {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.concert-action {
  display: flex;
  justify-content: flex-start;
}

.concert-action .button {
  white-space: nowrap;
}

.contact .section-heading {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
}

.contact .section-heading h2 {
  max-width: none;
}

.contact-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 52rem;
  margin: 2rem auto 0;
}

.contact-card {
  min-height: auto;
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    rgba(15, 28, 23, 0.82);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(152, 196, 165, 0.55) 100%);
  opacity: 0.9;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(215, 183, 118, 0.42);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

.contact-card strong {
  max-width: 16ch;
  font-size: 1.3rem;
  line-height: 1.15;
}

.contact-card span {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-links {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 44px;
  position: relative;
  overflow: hidden;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 183, 118, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.social-link::before {
  content: "";
  position: absolute;
  inset: auto 1rem 0.5rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(215, 183, 118, 0.9), rgba(244, 221, 172, 0.16));
  opacity: 0.42;
  transform: scaleX(0.32);
  transform-origin: left center;
  transition: transform 220ms ease, opacity 220ms ease;
}

.social-link::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -38%;
  width: 30%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.14) 45%, transparent 100%);
  opacity: 0;
  transform: skewX(-18deg);
  transition: transform 420ms ease, opacity 220ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(214, 183, 118, 0.3);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.social-link:hover::before,
.social-link:focus-visible::before {
  transform: scaleX(1);
  opacity: 1;
}

.social-link:hover::after,
.social-link:focus-visible::after {
  opacity: 1;
  transform: translateX(420%) skewX(-18deg);
}

.social-link svg {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--gold-soft);
}

.social-link span {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

@keyframes heroGlowDrift {
  0% {
    transform: translate3d(-4%, -1%, 0) scale(1);
    opacity: 0.34;
  }

  50% {
    transform: translate3d(2%, 1%, 0) scale(1.03);
    opacity: 0.48;
  }

  100% {
    transform: translate3d(6%, -1%, 0) scale(1.01);
    opacity: 0.38;
  }
}

@media (min-width: 768px) {
  .site-header {
    width: min(1180px, calc(100% - 1.75rem));
    padding: 1rem 0;
    gap: 1rem;
  }

  main {
    width: min(1180px, calc(100% - 1.75rem));
  }

  .hero-copy {
    min-height: 26rem;
    padding: 2rem 2.25rem;
    border-radius: 24px;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-actions .button {
    width: auto;
  }

  .older-concerts-toggle {
    align-self: flex-start;
  }

  .section-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.8rem 2rem;
  }

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

@media (min-width: 1024px) {
  .site-header {
    width: var(--container);
    align-items: center;
  }

  .brand-mark {
    width: 3.5rem;
    height: 3.5rem;
  }

  .brand-copy strong {
    font-size: 2.15rem;
  }

  .brand-copy small {
    display: block;
  }

  .brand-socials {
    display: inline-flex;
    align-items: center;
    gap: 0.18rem;
    margin-left: 3.6rem;
  }

  .lang-switch {
    margin-left: auto;
    margin-right: 0.25rem;
  }

  .brand-social-link {
    min-height: 0;
    padding: 0.38rem 0.5rem;
    gap: 0.45rem;
  }

  .brand-social-link svg {
    width: 0.82rem;
    height: 0.82rem;
  }

  .brand-social-link span {
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.45rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    padding-bottom: 0.35rem;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-copy {
    min-height: 30rem;
    padding: 2.4rem 3rem;
  }

  h1 {
    font-size: clamp(4rem, 7vw, 6.6rem);
  }

  .section-heading h2 {
    font-size: clamp(2.6rem, 4.5vw, 4.4rem);
  }

  .concert-row {
    grid-template-columns: 9rem 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1.15rem 1.25rem;
  }

  .concert-copy h3 {
    font-size: 1.7rem;
  }
}

@media (min-width: 1280px) {
  .hero-copy {
    min-height: 32rem;
    padding: 2.6rem 3.4rem;
  }

  .concert-row {
    grid-template-columns: 11rem 1fr auto;
    gap: 1.2rem;
  }

  .concert-copy h3 {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-copy {
    display: flex;
    flex-direction: column;
    min-height: 21rem;
    gap: 0.6rem;
    padding-bottom: 1.1rem;
  }

  .hero-copy .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
  }

  .hero-copy h1 {
    order: 1;
    margin-top: 0.15rem;
    font-size: clamp(2.25rem, 9.8vw, 3.2rem);
    max-width: 7.4ch;
    line-height: 0.92;
  }

  .hero-copy-image {
    position: relative;
    inset: auto;
    order: 2;
    z-index: 0;
    display: block;
    min-height: 10.5rem;
    margin: -9.7rem -1.15rem 0;
    border-radius: 14px;
    overflow: hidden;
  }

  .hero-copy-image::after {
    inset: 0;
    background:
      linear-gradient(180deg, rgba(6, 14, 11, 0.98) 0%, rgba(6, 14, 11, 0.84) 18%, rgba(6, 14, 11, 0.42) 36%, rgba(6, 14, 11, 0.12) 58%, rgba(6, 14, 11, 0.34) 100%);
  }

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

  .hero-copy > *:not(.hero-copy-image) {
    z-index: 1;
  }

  .hero-text {
    order: 3;
    margin-top: 1.35rem;
    line-height: 1.45;
  }

  .hero-actions {
    order: 4;
    margin-top: 0.55rem;
  }

}

@media (max-width: 430px) {
  .site-header {
    width: min(1180px, calc(100% - 1rem));
  }

  main {
    width: min(1180px, calc(100% - 1rem));
  }

  .brand {
    gap: 0.7rem;
  }

  .brand-mark {
    width: 2.9rem;
    height: 2.9rem;
  }

  .brand-copy strong {
    font-size: 1.7rem;
  }

  .hero-copy {
    min-height: 20.5rem;
    padding: 1.1rem 1rem;
    border-radius: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(2.05rem, 9.4vw, 2.85rem);
  }

  .hero-copy-image {
    min-height: 9.75rem;
    margin: -8.9rem -1rem 0;
  }

  .hero-actions {
    gap: 0.75rem;
  }

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

}

@media (max-width: 390px) {
  .brand-group {
    max-width: calc(100% - 4.5rem);
  }

  .brand-copy strong {
    font-size: 1.5rem;
  }

  .brand-copy small {
    font-size: 0.88rem;
  }

  .hero-copy {
    padding: 1rem 0.9rem;
    min-height: 20rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.95rem, 9.1vw, 2.55rem);
  }

  .hero-copy-image {
    min-height: 9rem;
    margin: -8.2rem -0.9rem 0;
  }

  .hero-text,
  .section-heading p:not(.eyebrow),
  .about-copy p {
    font-size: 0.98rem;
  }

  .contact-card {
    padding: 1.25rem;
  }
}
