:root {
  --blue-950: #04345d;
  --blue-900: #06477e;
  --blue-800: #075ea8;
  --blue-700: #0b73c9;
  --blue-600: #1588df;
  --blue-500: #2b9df0;
  --blue-100: #e8f5ff;
  --blue-050: #f4faff;
  --white: #ffffff;
  --ink: #09243d;
  --muted: #64798b;
  --line: rgba(6, 71, 126, .14);
  --gold: #f0bf3d;
  --gold-soft: #fff5cf;
  --past: #778692;
  --past-bg: #edf1f4;
  --past-line: #d6dde2;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 19px;
  --shadow-lg: 0 30px 90px rgba(4, 71, 126, .18);
  --shadow-md: 0 18px 48px rgba(4, 71, 126, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 10%, rgba(43, 157, 240, .11), transparent 28rem),
    radial-gradient(circle at 90% 40%, rgba(11, 115, 201, .08), transparent 30rem),
    #fff;
}

::selection { background: var(--blue-700); color: #fff; }
a { color: inherit; }
img { max-width: 100%; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--blue-950);
}
.skip-link:focus { top: 16px; }

.site-shell { overflow: clip; }
.section-pad { padding-inline: clamp(18px, 5vw, 76px); }

.topbar {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 50;
  width: min(1120px, calc(100% - 28px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 62px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 10px 42px rgba(4, 52, 93, .12);
  backdrop-filter: blur(18px) saturate(150%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-family: "Almendra", Georgia, serif;
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: .04em;
  color: var(--blue-950);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  transform: rotate(45deg);
  border-radius: 6px;
  color: #fff;
  background: var(--blue-700);
  font-size: .55rem;
}
.brand-mark::first-letter { transform: rotate(-45deg); }

.topnav { display: flex; align-items: center; gap: 6px; }
.topnav a {
  padding: 10px 15px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: var(--blue-900);
}
.topnav a:not(.nav-cta):hover { background: var(--blue-100); }
.topnav .nav-cta {
  color: #fff;
  background: var(--blue-800);
  box-shadow: 0 8px 24px rgba(7, 94, 168, .22);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: 112px;
  padding-bottom: clamp(78px, 10vw, 130px);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -2;
  height: 32%;
  background: linear-gradient(to bottom, transparent, var(--blue-050));
}
.hero-inner { width: min(1320px, 100%); margin: 0 auto; text-align: center; }

.hero-lozenges {
  position: absolute;
  z-index: -2;
  width: 310px;
  aspect-ratio: 1;
  opacity: .08;
  background-image:
    linear-gradient(45deg, var(--blue-700) 25%, transparent 25%),
    linear-gradient(-45deg, var(--blue-700) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--blue-700) 75%),
    linear-gradient(-45deg, transparent 75%, var(--blue-700) 75%);
  background-size: 62px 62px;
  background-position: 0 0, 0 31px, 31px -31px, -31px 0;
  transform: rotate(8deg);
  mask-image: radial-gradient(circle, #000 0 36%, transparent 73%);
}
.hero-lozenges-a { top: 13%; left: -95px; }
.hero-lozenges-b { right: -110px; bottom: 0; transform: rotate(-12deg); }

.hero-media {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
}
.image-frame {
  position: relative;
  padding: clamp(5px, .8vw, 10px);
  border: 1px solid rgba(7, 94, 168, .15);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-lg);
  transform: rotate(-.35deg);
}
.image-frame::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border: 2px solid rgba(11, 115, 201, .12);
  border-radius: calc(var(--radius-xl) + 8px);
}
.hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-xl) - 9px);
}
.music-chip {
  position: absolute;
  z-index: 3;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.66);
  border-radius: 999px;
  color: #fff;
  background: rgba(4,52,93,.84);
  box-shadow: 0 10px 32px rgba(4,52,93,.18);
  backdrop-filter: blur(12px);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.chip-left { left: clamp(8px, 2vw, 24px); bottom: clamp(8px, 2vw, 24px); }
.chip-right { right: clamp(8px, 2vw, 24px); top: clamp(8px, 2vw, 24px); }

.hero-copy { width: min(980px, 100%); margin: clamp(38px, 5vw, 64px) auto 0; }
.kicker {
  margin: 0 0 10px;
  color: var(--blue-700);
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3, p { text-wrap: pretty; }
h1, h2 { margin: 0; }
h1 {
  font-family: "Almendra", Georgia, serif;
  font-size: clamp(2.65rem, 7vw, 6.7rem);
  line-height: .93;
  letter-spacing: -.035em;
  color: var(--blue-950);
}
h1 span { color: var(--blue-700); font-size: .7em; }
.hero-subline {
  margin: 22px auto 0;
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2.1vw, 1.36rem);
  line-height: 1.45;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  box-shadow: 0 12px 34px rgba(7,94,168,.28);
}
.hero-note { color: var(--muted); font-weight: 600; }

.dates {
  position: relative;
  isolation: isolate;
  padding-top: clamp(80px, 10vw, 132px);
  padding-bottom: clamp(86px, 11vw, 148px);
  background: linear-gradient(180deg, var(--blue-050), #eaf6ff 58%, #f8fcff 100%);
  border-top: 1px solid var(--line);
}
.dates-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .035;
  background-image:
    linear-gradient(45deg, var(--blue-800) 25%, transparent 25%),
    linear-gradient(-45deg, var(--blue-800) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--blue-800) 75%),
    linear-gradient(-45deg, transparent 75%, var(--blue-800) 75%);
  background-size: 52px 52px;
  background-position: 0 0, 0 26px, 26px -26px, -26px 0;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 48px;
  width: min(1120px, 100%);
  margin: 0 auto 38px;
}
.section-heading h2 {
  font-family: "Almendra", Georgia, serif;
  font-size: clamp(3.1rem, 7vw, 6.2rem);
  line-height: .9;
  letter-spacing: -.03em;
  color: var(--blue-950);
}
.section-heading h2 span { color: var(--blue-700); }
.section-intro {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.9vw, 1.28rem);
  line-height: 1.5;
}

.next-gig {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto 22px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(130deg, var(--blue-950), var(--blue-700));
  box-shadow: 0 20px 60px rgba(4,52,93,.22);
  color: #fff;
}
.next-gig::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -90px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 48px solid rgba(255,255,255,.07);
}
.next-gig-link {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 142px;
  padding: 24px 28px;
  color: inherit;
  text-decoration: none;
}
.next-gig-date {
  display: grid;
  place-items: center;
  width: 90px;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 22px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}
.next-gig-date strong { font-size: 2.35rem; line-height: .9; }
.next-gig-date span { margin-top: 3px; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.next-gig-copy small {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue-950);
  background: var(--gold-soft);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.next-gig-copy h3 { margin: 10px 0 4px; font-size: clamp(1.55rem, 3vw, 2.15rem); line-height: 1; }
.next-gig-copy p { margin: 0; color: rgba(255,255,255,.78); font-size: 1.06rem; }
.next-gig-arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--blue-950);
  background: #fff;
  font-weight: 800;
  transition: transform .2s ease;
}
.next-gig-link:hover .next-gig-arrow { transform: translate(3px, -3px); }

.event-list { width: min(1120px, 100%); margin: 0 auto; }
.year-group + .year-group { margin-top: 44px; }
.year-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 14px;
  color: var(--blue-900);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.year-label::after { content: ""; height: 1px; flex: 1; background: rgba(7,94,168,.14); }
.year-events { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }

.event-card {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  align-items: center;
  gap: 17px;
  min-height: 116px;
  padding: 17px 17px 17px 18px;
  overflow: hidden;
  border: 1px solid rgba(7,94,168,.15);
  border-radius: var(--radius-md);
  color: #fff;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  box-shadow: 0 14px 38px rgba(4,71,126,.14);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.event-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: rgba(255,255,255,.42);
}
.event-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.46);
  box-shadow: 0 20px 46px rgba(4,71,126,.2);
}
.event-card.past {
  color: #61717d;
  background: var(--past-bg);
  border-color: var(--past-line);
  box-shadow: none;
}
.event-card.past::before { background: #aab5bd; }
.event-card.next {
  border-color: rgba(240,191,61,.9);
  box-shadow: 0 0 0 3px rgba(240,191,61,.18), 0 16px 44px rgba(4,71,126,.13);
}
.event-card.next::before { width: 6px; background: var(--gold); }

.date-box {
  display: grid;
  place-items: center;
  width: 70px;
  min-height: 74px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px;
  color: #fff;
  background: rgba(255,255,255,.13);
  text-align: center;
}
.past .date-box { color: #6d7b86; background: #fff; border-color: #d7dfe4; }
.next .date-box { background: var(--gold-soft); color: #6c4a00; }
.date-box .weekday { display: block; margin-bottom: 3px; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.date-box .day { display: block; font-size: 1.95rem; font-weight: 800; line-height: .85; }
.date-box .month { display: block; margin-top: 5px; font-size: .75rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }

.event-info { min-width: 0; }
.event-info h3 { margin: 0; font-size: clamp(1.22rem, 2.2vw, 1.55rem); line-height: 1.05; }
.event-meta { display: flex; flex-wrap: wrap; gap: 8px 13px; margin-top: 7px; color: rgba(255,255,255,.78); font-size: 1rem; }
.past .event-meta { color: #7d8991; }
.meta-item { display: inline-flex; align-items: center; gap: 6px; }
.meta-dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: .5; }

.event-side { display: grid; justify-items: end; align-self: stretch; min-width: 92px; }
.event-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.15);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.past .event-badge { color: #687680; background: #dde3e7; }
.next .event-badge { color: #6c4a00; background: var(--gold-soft); }
.map-link-label { margin-top: auto; color: rgba(255,255,255,.92); font-size: .88rem; font-weight: 700; white-space: nowrap; }
.past .map-link-label { color: #7a8993; }

.empty-state { padding: 28px; border-radius: 20px; background: #fff; text-align: center; color: var(--muted); }

.footer {
  padding-top: 36px;
  padding-bottom: 36px;
  color: rgba(255,255,255,.82);
  background: var(--blue-950);
}
.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.footer-inner > div { display: flex; align-items: baseline; gap: 7px; }
.footer strong { color: #fff; font-family: "Almendra", Georgia, serif; font-size: 1.35rem; }
.footer span { font-weight: 600; }
.footer p { margin: 0; }
.footer p:last-child { justify-self: end; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 880px) {
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .section-intro { max-width: 650px; }
  .year-events { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer p:last-child { justify-self: center; }
}

@media (max-width: 620px) {
  html { scroll-padding-top: 78px; }
  .topbar { top: 8px; width: calc(100% - 16px); min-height: 56px; padding: 8px 8px 8px 14px; }
  .brand { font-size: 1.25rem; }
  .brand-mark { width: 24px; height: 24px; }
  .topnav > a:first-child { display: none; }
  .topnav .nav-cta { padding: 9px 13px; font-size: .94rem; }
  .hero { min-height: auto; padding-top: 92px; padding-bottom: 82px; }
  .image-frame { border-radius: 22px; padding: 4px; }
  .image-frame::before { inset: -6px; border-radius: 26px; }
  .hero-image { border-radius: 18px; }
  .music-chip { padding: 7px 10px; font-size: .78rem; }
  .hero-copy { margin-top: 36px; }
  h1 { font-size: clamp(2.55rem, 14vw, 4.1rem); }
  h1 span { font-size: .68em; }
  .hero-subline { font-size: 1.08rem; }
  .hero-note { width: 100%; }
  .dates { padding-top: 72px; padding-bottom: 86px; }
  .section-heading { margin-bottom: 26px; }
  .next-gig-link { grid-template-columns: 72px 1fr; gap: 15px; min-height: 132px; padding: 18px; }
  .next-gig-date { width: 70px; border-radius: 17px; }
  .next-gig-date strong { font-size: 1.9rem; }
  .next-gig-arrow { display: none; }
  .event-card { grid-template-columns: 64px 1fr; gap: 13px; min-height: 110px; padding: 14px; }
  .date-box { width: 60px; min-height: 68px; border-radius: 14px; }
  .date-box .day { font-size: 1.65rem; }
  .event-side { grid-column: 2; grid-row: 2; min-width: 0; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
  .event-meta { margin-top: 6px; }
  .map-link-label { margin-top: 0; }
}

@media (max-width: 390px) {
  .event-side { align-items: flex-start; flex-direction: column; }
  .music-chip.chip-right { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Dunklere Bayern-Optik */
body {
  color: #f4f9fd;
  background: #031f35;
}

body::before {
  background:
    radial-gradient(circle at 10% 8%, rgba(43, 157, 240, .16), transparent 30rem),
    radial-gradient(circle at 88% 44%, rgba(11, 115, 201, .15), transparent 34rem),
    linear-gradient(180deg, #031f35 0%, #052a47 48%, #031a2e 100%);
}

.topbar {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(3, 31, 53, .84);
  box-shadow: 0 12px 44px rgba(0, 0, 0, .26);
}

.brand,
.topnav a {
  color: #f7fbff;
}

.topnav a:not(.nav-cta):hover {
  background: rgba(255,255,255,.09);
}

.hero {
  background:
    radial-gradient(circle at 50% 8%, rgba(31, 129, 204, .20), transparent 34rem),
    linear-gradient(180deg, #031f35 0%, #062c4b 70%, #052743 100%);
}

.hero::after {
  background: linear-gradient(to bottom, transparent, #052743);
}

.hero-lozenges {
  opacity: .13;
  filter: brightness(1.6);
}

.image-frame {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
  box-shadow: 0 32px 90px rgba(0, 0, 0, .34);
}

.image-frame::before {
  border-color: rgba(93, 181, 247, .22);
}

h1,
.section-heading h2 {
  color: #ffffff;
}

h1 span,
.section-heading h2 span,
.kicker {
  color: #75c2f6;
}

.hero-subline,
.hero-note {
  color: rgba(240, 248, 255, .72);
}

.dates {
  background:
    radial-gradient(circle at 18% 0%, rgba(43, 157, 240, .12), transparent 30rem),
    linear-gradient(180deg, #052743 0%, #04233c 54%, #031b2f 100%);
  border-top-color: rgba(255,255,255,.09);
}

.dates-grid-bg {
  opacity: .07;
  filter: brightness(1.7);
}

.section-heading {
  display: block;
  width: min(1120px, 100%);
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading .kicker {
  text-align: center;
}

.section-heading h2 {
  text-align: center;
}

.next-gig {
  background: linear-gradient(130deg, #064477, #0875bd);
  box-shadow: 0 22px 64px rgba(0, 0, 0, .28);
}

.year-label {
  color: #8fcdf6;
}

.year-label::after {
  background: rgba(143,205,246,.20);
}

.event-card {
  border-color: rgba(255,255,255,.13);
  background: linear-gradient(135deg, #0b70bc, #064477);
  box-shadow: 0 15px 38px rgba(0,0,0,.20);
}

.event-card:hover {
  box-shadow: 0 22px 48px rgba(0,0,0,.28);
}

.event-card.past {
  color: #c0cad2;
  background: #34434f;
  border-color: #4b5a65;
}

.event-card.past::before {
  background: #7f8c95;
}

.past .date-box {
  color: #d3dbe0;
  background: #283640;
  border-color: #53616b;
}

.past .event-meta,
.past .map-link-label {
  color: #aeb9c1;
}

.past .event-badge {
  color: #d5dde2;
  background: #4a5964;
}

.empty-state {
  background: #0a3557;
  color: rgba(255,255,255,.72);
}

.footer {
  background: #021523;
}

@media (max-width: 880px) {
  .section-heading { text-align: center; }
}

/* Hero ohne Navigation: Banner über die gesamte Seitenbreite */
.topbar { display: none !important; }

.hero {
  min-height: auto;
  display: block;
  padding: 0 0 clamp(78px, 9vw, 118px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 28%, rgba(31, 129, 204, .18), transparent 34rem),
    linear-gradient(180deg, #031f35 0%, #062c4b 74%, #052743 100%);
}

.hero-media {
  width: 100%;
  max-width: none;
  margin: 0;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.hero-copy {
  width: min(1040px, 100%);
  margin: clamp(46px, 6vw, 76px) auto 0;
  text-align: center;
}

.hero-subline {
  max-width: 760px;
  color: rgba(240, 248, 255, .86);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 600;
}

.hero-lozenges-a { top: 38%; }
.hero-lozenges-b { bottom: -8%; }

.footer-credit {
  display: block;
  width: min(340px, 72vw);
  margin: 30px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
  text-align: center;
}

.footer-credit img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  opacity: .94;
  transition: opacity .2s ease, transform .2s ease;
}

.footer-credit:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 620px) {
  html { scroll-padding-top: 18px; }
  .hero { padding-top: 0; padding-bottom: 72px; }
  .hero-copy { margin-top: 38px; }
  .hero-subline { font-size: 1.12rem; }
  .footer-credit { width: min(250px, 68vw); margin-top: 24px; padding-top: 20px; }
}


/* Feinschliff: kleineres Footer-Logo + bayerische diagonale Karos */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40 Z'/%3E%3Cpath d='M120 0 L160 40 L120 80 L80 40 Z'/%3E%3Cpath d='M40 80 L80 120 L40 160 L0 120 Z'/%3E%3Cpath d='M120 80 L160 120 L120 160 L80 120 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 160px 160px;
  background-repeat: repeat;
}

.dates-grid-bg {
  opacity: .14;
  filter: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='176' height='176' viewBox='0 0 176 176'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M44 0 L88 44 L44 88 L0 44 Z'/%3E%3Cpath d='M132 0 L176 44 L132 88 L88 44 Z'/%3E%3Cpath d='M44 88 L88 132 L44 176 L0 132 Z'/%3E%3Cpath d='M132 88 L176 132 L132 176 L88 132 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 176px 176px;
  background-repeat: repeat;
  background-position: center top;
}

.footer-credit {
  width: min(270px, 52vw);
  margin-top: 22px;
  padding-top: 20px;
}

@media (max-width: 620px) {
  body::after {
    opacity: .18;
    background-size: 112px 112px;
  }

  .dates-grid-bg {
    background-size: 120px 120px;
  }

  .footer-credit {
    width: min(190px, 54vw);
    margin-top: 18px;
    padding-top: 16px;
  }
}
