:root {
  --ggf-primary: #f2b316;
  --ggf-primary-dark: #dea10f;
  --ggf-surface: #fffaf0;
  --ggf-text: #101010;
  --ggf-accent: #1c1c1c;
  --ggf-line: rgba(16, 16, 16, 0.1);
  --ggf-white: #fffdf8;
  --ggf-muted: #575149;
  --ggf-shadow: 0 24px 80px rgba(16, 16, 16, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ggf-text);
  background: linear-gradient(180deg, var(--ggf-primary-dark) 0%, var(--ggf-primary) 100%);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

.ggf-shell {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
}

.ggf-page,
.ggf-footer {
  overflow: hidden;
}

.ggf-hero {
  padding: 28px 0 72px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 236, 176, 0.22), transparent 18%),
    linear-gradient(180deg, color-mix(in srgb, var(--ggf-primary) 88%, white) 0%, var(--ggf-primary) 100%);
}

.ggf-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 40px;
}

.ggf-logo-link {
  width: min(420px, 100%);
}

.ggf-logo {
  width: 100%;
}

.ggf-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ggf-hero-copy {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.ggf-kicker,
.ggf-label,
.ggf-meta,
.ggf-schedule-date {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ggf-hero-title {
  margin: 0;
  color: var(--ggf-white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(4.8rem, 11vw, 8rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.ggf-hero-date {
  margin: 0;
  color: var(--ggf-white);
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1;
  font-weight: 300;
}

.ggf-hero-text {
  max-width: 34ch;
  margin: 0;
  line-height: 1.7;
  font-size: 1.08rem;
}

.ggf-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}

.ggf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.ggf-button-dark {
  color: var(--ggf-white);
  background: var(--ggf-accent);
}

.ggf-button-light {
  color: var(--ggf-text);
  background: rgba(255, 255, 255, 0.72);
}

.ggf-section {
  padding: 40px 0 72px;
  background: var(--ggf-surface);
}

.ggf-section-tinted {
  background:
    linear-gradient(180deg, rgba(242, 179, 22, 0.16), rgba(242, 179, 22, 0.04)),
    var(--ggf-surface);
}

.ggf-section-soft {
  background:
    linear-gradient(180deg, rgba(16, 16, 16, 0.04), rgba(16, 16, 16, 0)),
    var(--ggf-surface);
}

.ggf-section-tight {
  padding-top: 0;
  background: var(--ggf-surface);
}

.ggf-two-col,
.ggf-info-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
}

.ggf-info-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ggf-section-header {
  max-width: 860px;
  margin-bottom: 28px;
}

.ggf-section-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3.1vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.ggf-richtext p {
  margin: 0 0 16px;
  line-height: 1.72;
  color: var(--ggf-muted);
}

.ggf-note-card,
.ggf-card {
  border: 1px solid var(--ggf-line);
  border-radius: 28px;
  background: #fffdf8;
  box-shadow: 0 10px 30px rgba(16, 16, 16, 0.05);
}

.ggf-note-card {
  padding: 28px;
  color: var(--ggf-white);
  background: var(--ggf-accent);
}

.ggf-note-card .ggf-section-title {
  color: var(--ggf-white);
}

.ggf-program-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.ggf-program-card,
.ggf-info-card,
.ggf-schedule-item,
.ggf-logo-card,
.ggf-gallery-item,
.ggf-generic-entry {
  padding: 22px;
}

.ggf-program-card.is-featured {
  grid-row: span 2;
  color: var(--ggf-white);
  background: linear-gradient(180deg, #171717, #242424);
}

.ggf-program-card h3,
.ggf-schedule-item h3,
.ggf-info-card h3,
.ggf-generic-entry h1 {
  margin: 10px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
  line-height: 1.14;
  font-weight: 700;
}

.ggf-program-card p,
.ggf-schedule-item p,
.ggf-info-card p,
.ggf-info-card li,
.ggf-footer-imprint p {
  line-height: 1.68;
}

.ggf-program-card.is-featured .ggf-meta {
  color: rgba(255, 253, 248, 0.72);
}

.ggf-location {
  margin-bottom: 0;
  opacity: 0.9;
}

.ggf-schedule {
  display: grid;
  gap: 12px;
}

.ggf-schedule-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
}

.ggf-schedule-date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 12px 18px;
  border-radius: 18px;
  color: var(--ggf-text);
  background: var(--ggf-primary);
}

.ggf-list {
  margin: 14px 0 0;
  padding-left: 18px;
}

.ggf-list li + li {
  margin-top: 6px;
}

.ggf-info-card.is-dark {
  color: var(--ggf-white);
  background: #141414;
}

.ggf-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ggf-logo-card {
  display: grid;
  place-items: center;
  min-height: 136px;
  overflow: hidden;
  background: #fff;
}

.ggf-logo-card img {
  width: 100%;
  max-height: 86px;
  object-fit: contain;
}

.ggf-logo-slider {
  position: relative;
  overflow: hidden;
}

.ggf-logo-stage {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  opacity: 1;
  transition: opacity 300ms ease;
}

.ggf-logo-stage.is-fading {
  opacity: 0;
}

.ggf-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ggf-gallery-item {
  overflow: hidden;
  padding: 0;
}

.ggf-gallery-item img,
.ggf-gallery-item iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border: 0;
}

.ggf-footer {
  padding: 20px 0 28px;
  color: var(--ggf-white);
  background: #111;
}

.ggf-footer-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
  font-size: 0.92rem;
}

.ggf-footer strong {
  display: inline-block;
  margin-top: 6px;
}

.ggf-footer-imprint p {
  margin: 0 0 8px;
}

.ggf-footer-links {
  margin: 14px 0 0;
}

.ggf-footer-links a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ggf-cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(520px, calc(100% - 32px));
  padding: 18px 20px;
  border-radius: 24px;
  color: var(--ggf-white);
  background: rgba(17, 17, 17, 0.96);
  box-shadow: var(--ggf-shadow);
}

.ggf-is-hidden {
  display: none !important;
}

.ggf-cookie-banner p {
  flex: 1;
  margin: 0;
  line-height: 1.55;
}

.ggf-cookie-banner a {
  color: #fff5cb;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ggf-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.ggf-shop-card,
.ggf-shop-form,
.ggf-shop-legal,
.ggf-shop-message {
  background: #fff;
}

.ggf-shop-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 16px;
}

.ggf-shop-price {
  font-weight: 700;
}

.ggf-shop-price span {
  display: block;
  margin-top: 4px;
  font-weight: 400;
  opacity: 0.72;
}

.ggf-shop-form,
.ggf-shop-legal {
  margin-top: 18px;
}

.ggf-shop-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.ggf-shop-form label {
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
}

.ggf-shop-form input,
.ggf-shop-form select,
.ggf-shop-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
}

.ggf-shop-span {
  grid-column: 1 / -1;
}

.ggf-check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0;
}

.ggf-check input {
  width: auto;
  margin-top: 4px;
}

.ggf-shop-message.is-error {
  background: #fff1f1;
}

@media (max-width: 1024px) {
  .ggf-two-col,
  .ggf-program-grid,
  .ggf-info-grid,
  .ggf-logo-grid,
  .ggf-shop-grid,
  .ggf-shop-form-grid,
  .ggf-gallery-grid,
  .ggf-footer-inner,
  .ggf-logo-stage {
    grid-template-columns: 1fr;
  }

  .ggf-program-card.is-featured {
    grid-row: auto;
  }

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

@media (max-width: 720px) {
  .ggf-shell {
    width: min(100%, calc(100% - 24px));
  }

  .ggf-topbar {
    flex-direction: column;
  }

  .ggf-hero-title {
    font-size: clamp(3.2rem, 18vw, 5rem);
  }

  .ggf-schedule-item {
    grid-template-columns: 1fr;
  }

  .ggf-logo-stage {
    grid-template-columns: 1fr;
  }

  .ggf-cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    flex-direction: column;
    align-items: flex-start;
  }
}
