﻿:root {
  --ink: #18201c;
  --muted: #66706a;
  --paper: #fbf7ef;
  --panel: #fffdf8;
  --line: #dfd2bd;
  --gold: #b88a3a;
  --gold-dark: #8b6428;
  --green: #153c31;
  --blue: #10253b;
  --shadow: 0 18px 55px rgba(28, 23, 15, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 247, 239, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  gap: 18px;
  align-items: center;
  text-decoration: none;
  min-width: 270px;
}

.brand img {
  width: 104px;
  height: 104px;
  object-fit: contain;
  background: transparent;
  border: 0;
}

.brand strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1;
  color: var(--green);
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--gold-dark);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.nav a,
.footer a,
.text-link {
  text-decoration: none;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.nav a:hover,
.text-link:hover,
.footer a:hover {
  color: var(--gold-dark);
}

.lang {
  display: flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.lang button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  padding: 8px 10px;
  cursor: pointer;
}

.lang button.active {
  background: var(--green);
  color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(340px, 1.08fr);
  min-height: calc(100vh - 87px);
  border-bottom: 1px solid var(--line);
}

.hero-media {
  min-height: 580px;
  background: #ece2d3;
}

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

.hero-copy {
  align-self: center;
  padding: clamp(32px, 6vw, 84px);
}

.eyebrow,
.section-kicker,
.date {
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  font-size: clamp(52px, 7vw, 100px);
  color: var(--green);
}

h2 {
  font-size: clamp(34px, 4.5vw, 58px);
  color: var(--green);
}

h3 {
  font-size: 31px;
  color: var(--green);
}

.hero-copy p:not(.eyebrow) {
  max-width: 680px;
  color: #39443d;
  font-size: 20px;
}

.hero-actions,
.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--green);
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: #fff;
  background: var(--green);
}

.button.secondary {
  color: var(--green);
  background: transparent;
}

.section {
  padding: clamp(44px, 7vw, 92px) clamp(18px, 4vw, 56px);
}

.intro-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: end;
  background: var(--green);
  color: #fff;
}

.intro-band h2,
.intro-band .section-kicker {
  color: #fff;
}

.intro-band p:last-child {
  margin: 0;
  max-width: 780px;
  color: #e5ded1;
  font-size: 20px;
}

.section-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  margin-bottom: 34px;
  align-items: end;
}

.section-head > p {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
}

.event-spotlight {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  background: #fffaf1;
  border-bottom: 1px solid var(--line);
}

.spotlight-copy .lead {
  max-width: 720px;
  color: #39443d;
  font-size: 22px;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0;
}

.facts div {
  min-height: 118px;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.facts span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.facts strong {
  display: block;
  color: var(--green);
  line-height: 1.35;
}

.program-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.program-list span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  background: #f4eadb;
  color: var(--green);
  font-weight: 800;
}

.spotlight-media {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 16px;
  align-items: end;
}

.spotlight-media img {
  width: 100%;
  object-fit: contain;
  background: #fbf6ec;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.spotlight-media img:first-child {
  aspect-ratio: auto;
}

.spotlight-media img:last-child {
  aspect-ratio: auto;
}

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

.event-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.event-card.featured {
  grid-column: span 1;
}

.event-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center top;
  background: #fbf6ec;
}

.event-body {
  padding: 24px;
}

.event-body p {
  color: var(--muted);
}

dl {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

dl div {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

dt {
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
}

dd {
  margin: 2px 0 0;
  color: #2c352f;
}

.text-link {
  display: inline-flex;
  color: var(--green);
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}

.event-card.quiet {
  min-height: 100%;
  background: #f4eadb;
}

.artists,
.about {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 0.88fr);
  gap: 46px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.artists p,
.about p {
  color: var(--muted);
  font-size: 18px;
}

.image-pair {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 14px;
}

.image-pair img,
.about img,
.gallery-grid img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center top;
  background: #fbf6ec;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.image-pair img:first-child {
  aspect-ratio: auto;
}

.image-pair img:last-child {
  aspect-ratio: auto;
}

.tickets {
  background: #efe5d5;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ticket-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.8fr) minmax(240px, 0.65fr);
  gap: 20px;
}

.ticket-form,
.payment-card,
.instagram-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: var(--shadow);
}

.ticket-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.payment-card h3 {
  font-family: Inter, Arial, sans-serif;
  color: var(--blue);
  font-size: 26px;
}

.bank-details {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fff8ea;
}

.bank-details p {
  margin: 0;
  color: #2c352f;
  overflow-wrap: anywhere;
}

.bank-details span {
  font-weight: 800;
}

.copy-payment {
  min-height: 44px;
  border: 1px solid var(--green);
  background: var(--green);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.payment-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 12px;
  padding: 0 18px;
  border: 1px solid var(--green);
  background: #fff;
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.payment-page-link:hover {
  background: var(--green);
  color: #fff;
}

.copy-payment.copied {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.bank-qr {
  display: grid;
  gap: 10px;
  justify-items: center;
  width: min(100%, 250px);
  margin: 20px 0;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
}

.bank-qr img {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1;
  object-fit: contain;
}

.bank-qr figcaption {
  color: var(--blue);
  font-weight: 900;
  line-height: 1.25;
}

.qr-help {
  max-width: 46ch;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.note {
  color: var(--muted);
}

.instagram-card {
  display: grid;
  align-content: start;
  gap: 16px;
}

.instagram-card img {
  width: 160px;
  border: 1px solid var(--line);
}

.about {
  grid-template-columns: minmax(320px, 0.8fr) minmax(300px, 1fr);
}

.about img {
  aspect-ratio: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(210px, 0.55fr) minmax(240px, 0.75fr);
  gap: 18px;
  align-items: stretch;
}

.gallery-grid img:first-child {
  aspect-ratio: auto;
}

.gallery-grid img:nth-child(2) {
  aspect-ratio: auto;
}

.video-slot {
  display: grid;
  place-items: center;
  min-height: 330px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--green);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.video-slot span {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
}

.video-slot small {
  color: #d8cbb6;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 56px);
  align-items: center;
  background: var(--blue);
  color: #fff;
}

.footer p {
  margin: 3px 0 0;
  color: #cfc6b7;
}

.footer div {
  display: grid;
  gap: 6px;
}

@media (max-width: 1100px) {
  .site-header,
  .hero,
  .intro-band,
  .event-spotlight,
  .section-head,
  .artists,
  .about,
  .ticket-layout,
  .footer {
    grid-template-columns: 1fr;
  }

  .nav {
    justify-content: start;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 420px;
  }

  .events-grid,
  .facts,
  .spotlight-media,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    gap: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 78px;
    height: 78px;
  }

  .brand strong {
    font-size: 24px;
  }

  .nav {
    gap: 14px;
  }

  h1 {
    font-size: 44px;
  }

  .hero-copy {
    padding: 32px 18px;
  }

  .events-grid,
  .facts,
  .spotlight-media,
  .gallery-grid,
  .image-pair {
    grid-template-columns: 1fr;
  }

  .bank-qr {
    width: 100%;
  }
}

