:root {
  --ink: #171915;
  --muted: #62685d;
  --paper: #fffaf0;
  --forest: #183f2b;
  --leaf: #6f8f45;
  --sun: #f3b348;
  --berry: #a43f52;
  --mist: #eef0df;
  --line: rgba(23, 25, 21, 0.14);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: white;
  background: linear-gradient(rgba(16, 34, 24, 0.72), rgba(16, 34, 24, 0));
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-logo {
  display: block;
  width: clamp(140px, 19vw, 240px);
  height: auto;
  border-radius: 6px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.92);
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.34));
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.76);
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 20px;
  font-size: 0.95rem;
  font-weight: 700;
}

nav a {
  padding: 8px 0;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--forest);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 26, 19, 0.82), rgba(12, 26, 19, 0.32)),
    linear-gradient(0deg, rgba(12, 26, 19, 0.86), rgba(12, 26, 19, 0.08) 42%),
    url("assets/hero-wald.jpg") center / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  width: min(820px, calc(100% - 40px));
  padding: 170px 0 150px clamp(20px, 7vw, 88px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 9vw, 7.7rem);
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 800;
}

.button.primary {
  color: #231b0c;
  background: var(--sun);
}

.button.ghost {
  color: inherit;
  border-color: currentColor;
  background: rgba(255, 255, 255, 0.08);
}

.event-strip {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: 24px;
  left: clamp(18px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: white;
}

.event-strip div {
  min-width: 0;
  padding: 18px 24px 0 0;
}

.event-strip span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.event-strip strong {
  display: block;
  margin-top: 5px;
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.section {
  padding: clamp(56px, 9vw, 112px) clamp(20px, 7vw, 88px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1fr);
  gap: 40px;
  align-items: start;
  background: var(--mist);
}

.intro p:last-child,
.story p {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  line-height: 1.65;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.program-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(420px, 1.28fr);
  gap: 26px;
  align-items: start;
}

.flyer-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 24px 54px rgba(23, 25, 21, 0.16);
}

.flyer-card img {
  display: block;
  width: 100%;
  height: auto;
}

.program-grid {
  display: grid;
  grid-template-columns: minmax(240px, 420px);
  gap: 18px;
}

.program-grid article,
.info-list article {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.48);
}

.program-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--berry);
  font-size: 1.7rem;
  font-weight: 900;
}

.program-grid p,
.info-list p {
  color: var(--muted);
  line-height: 1.55;
}

.music-photo {
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 24px 54px rgba(23, 25, 21, 0.14);
}

.music-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(340px, 1.28fr);
  gap: 34px;
  align-items: center;
  color: white;
  background: var(--forest);
}

.info-band p:not(.eyebrow) {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  line-height: 1.6;
}

.info-band .button {
  margin-top: 18px;
}

.map-frame {
  display: grid;
  place-items: center;
  min-height: clamp(320px, 38vw, 520px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 38vw, 520px);
  border: 0;
}

.map-consent {
  width: min(480px, calc(100% - 40px));
  text-align: center;
}

.map-consent h3 {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.map-consent p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.map-consent .button {
  margin-top: 8px;
  border: 0;
  cursor: pointer;
}

.impressions {
  background: var(--paper);
}

.impressions-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(320px, 1.28fr);
  grid-auto-rows: minmax(230px, 24vw);
  gap: 16px;
}

.impressions-grid figure {
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--forest);
  box-shadow: 0 18px 40px rgba(23, 25, 21, 0.12);
}

.impressions-grid .portrait {
  grid-row: span 2;
}

.impressions-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery {
  display: grid;
  grid-template-columns: minmax(250px, 0.35fr) minmax(420px, 0.65fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  background: #f8efd9;
}

.gallery-copy p:last-child {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  line-height: 1.62;
}

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

.group-photos figure {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--forest);
  box-shadow: 0 18px 40px rgba(23, 25, 21, 0.14);
}

.group-photos figure:first-child {
  grid-column: 1 / -1;
  min-height: clamp(260px, 34vw, 520px);
}

.group-photos img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.group-photos figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  border-radius: 6px;
  padding: 8px 11px;
  color: white;
  background: rgba(20, 23, 18, 0.74);
  font-size: 0.82rem;
  font-weight: 900;
}

.story {
  max-width: 980px;
}

.story-quote {
  margin-top: 28px;
  color: var(--berry);
  font-size: clamp(1.35rem, 2.8vw, 2.35rem);
  font-weight: 900;
  line-height: 1.18;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 7vw, 88px);
  color: white;
  background: #141712;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  nav {
    max-width: 180px;
  }

  .hero {
    align-items: start;
  }

  .hero-content {
    width: auto;
    padding: 122px 20px 190px;
  }

  .event-strip,
  .intro,
  .program-layout,
  .program-grid,
  .info-band,
  .gallery,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .event-strip {
    right: 20px;
    bottom: 18px;
    left: 20px;
  }

  .event-strip div {
    padding-top: 12px;
  }

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

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

  .impressions-grid .portrait {
    grid-row: span 1;
  }

  .group-photos {
    grid-template-columns: 1fr;
  }

  .group-photos figure,
  .group-photos figure:first-child {
    min-height: 260px;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 560px) {
  .site-header {
    display: block;
  }

  nav {
    justify-content: flex-start;
    max-width: none;
    margin-top: 14px;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 116px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.4rem);
  }

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