:root {
  --bg: #0f0f10;
  --bg-soft: #17181b;
  --panel: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.16);
  --text: #f4f1e8;
  --muted: #b9b2a5;
  --accent: #6d92ff;
  --accent-soft: #c6d4ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(109, 146, 255, 0.24), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(255, 240, 198, 0.12), transparent 22%),
    linear-gradient(180deg, #131416 0%, #0a0b0c 100%);
  color: var(--text);
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
}

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

.page-shell {
  width: min(1200px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 24px 0 64px;
}

.hero,
.intro,
.events,
.contact,
.cta {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 32px;
  overflow: hidden;
  padding: 56px;
  border-radius: 32px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(109, 146, 255, 0.3), transparent 68%);
  pointer-events: none;
}

.hero__brand {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.hero__eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
}

.hero__title,
.intro h2,
.section-heading h2,
.cta h2,
.contact h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 0.94;
}

.hero__title {
  font-size: clamp(3.6rem, 10vw, 7.6rem);
}

.hero__copy,
.intro__note p,
.cta p,
.contact__intro p {
  margin: 20px 0 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero__mark {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.hero__mark img {
  width: min(100%, 340px);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.45));
}

.intro,
.events,
.contact,
.cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
  padding: 28px 32px;
  border-radius: 24px;
}

.intro h2,
.events h2,
.section-heading h2,
.cta h2,
.contact h2 {
  font-size: clamp(2rem, 4.4vw, 3.8rem);
}

.intro__note {
  display: flex;
  align-items: end;
  justify-content: end;
  text-align: left;
}

.events {
  display: block;
  margin-top: 24px;
  padding: 28px 32px;
  border-radius: 24px;
}

.events__intro {
  max-width: 42rem;
}

.events__kicker {
  margin: 0 0 10px;
  color: var(--text);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.events__frame-wrap {
  margin-top: 24px;
  min-width: 0;
}

.events__frame {
  display: block;
  width: 100%;
  height: 525px;
  border: 0;
  border-radius: 0;
  background: #050505;
}

.upcoming__meta-label {
  margin-bottom: 8px;
  color: var(--accent-soft);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.upcoming__date {
  color: var(--text);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
}

.upcoming__date--secondary {
  margin-top: 10px;
  color: var(--accent-soft);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}

.upcoming__location {
  max-width: 22rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
}

.gallery {
  margin-top: 48px;
}

.section-heading {
  margin-bottom: 22px;
}

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

.gallery-card {
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.gallery-card--wide {
  grid-column: span 8;
}

.gallery-card--tall {
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-card:hover img {
  transform: scale(1.03);
}


.contact {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) auto;
}

.contact__intro {
  max-width: 38rem;
}

.contact__action {
  display: flex;
  align-items: end;
  justify-content: end;
}

.contact__form-wrap {
  grid-column: 1 / -1;
  padding-top: 8px;
}

.contact__form-wrap[hidden] {
  display: none;
}


.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form__field {
  display: grid;
  gap: 8px;
  color: var(--accent-soft);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-form__field--hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  font: inherit;
  letter-spacing: 0;
  padding: 13px 14px;
  text-transform: none;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-soft);
  outline: 2px solid rgba(198, 212, 255, 0.22);
  outline-offset: 2px;
}

.contact-form__button {
  justify-self: start;
  border: 0;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #101114;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 12px 18px;
}

.contact-form__button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.contact-form__status {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.cta {
  align-items: center;
  margin-top: 48px;
}

.cta__content {
  max-width: 36rem;
}

.cta__qr {
  display: flex;
  justify-content: end;
}

.cta__qr img {
  width: min(100%, 260px);
  border-radius: 24px;
  background: white;
  padding: 12px;
}

@media (max-width: 900px) {
  .page-shell {
    width: min(100vw - 20px, 1200px);
    padding-top: 10px;
  }

  .hero,
  .intro,
  .events,
  .contact,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 28px;
  }

  .intro,
  .events,
  .contact,
  .cta {
    padding: 22px;
  }

  .intro__note,
  .upcoming__details,
  .contact__action,
  .cta__qr {
    justify-content: start;
  }

  .events__frame {
    height: 525px;
  }

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

  .gallery-card,
  .gallery-card--wide,
  .gallery-card--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-card img {
    min-height: 260px;
  }
}


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

  .contact__action {
    justify-content: start;
  }
}
