:root {
  color-scheme: light;
  --ink: #181918;
  --charcoal: #292723;
  --moon: #c2a272;
  --moss: #49694f;
  --fern: #c8d7ba;
  --mist: #f4f0e7;
  --paper: #fffaf0;
  --clay: #9b5a43;
  --sky: #42697b;
  --line: rgba(24, 25, 24, 0.16);
  --shadow: 0 24px 80px rgba(24, 25, 24, 0.18);
  --max: 1180px;
}

@font-face {
  font-family: "Dark Reborn";
  src: url("../fonts/dark-reborn/DarkReborn-Regular.ttf") format("truetype");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(rgba(255, 250, 240, 0.78), rgba(244, 240, 231, 0.9)),
    url("../public/assets/zebra-turq-background.svg") center / 520px repeat;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background: radial-gradient(circle at 88% 8%, rgba(194, 162, 114, 0.24), transparent 24rem);
  pointer-events: none;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 46px);
  color: var(--paper);
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 250, 240, 0.92);
  box-shadow: 0 14px 42px rgba(24, 25, 24, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1.08rem, 1.4vw, 1.22rem);
  font-weight: 900;
  letter-spacing: 0.16em;
}

.brand-text-mobile {
  display: none;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18));
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  font-size: clamp(1.02rem, 1.25vw, 1.16rem);
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(30px, 4.5vw, 72px);
  align-items: center;
  min-height: 80svh;
  padding: 96px max(18px, calc((100% - var(--max)) / 2)) 0;
  color: var(--paper);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 19, 17, 0.78) 0%, rgba(10, 19, 17, 0.64) 48%, rgba(10, 19, 17, 0.36) 100%),
    url("../public/assets/zebra-turq-background.svg") center / 440px repeat,
    radial-gradient(circle at 50% 82%, rgba(194, 162, 114, 0.34), transparent 23rem),
    linear-gradient(160deg, var(--moss), var(--sky));
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 0 0, rgba(6, 16, 15, 0.68), transparent 34rem),
    radial-gradient(circle at 100% 0, rgba(6, 16, 15, 0.62), transparent 32rem),
    radial-gradient(circle at 0 100%, rgba(6, 16, 15, 0.46), transparent 30rem),
    radial-gradient(circle at 100% 100%, rgba(6, 16, 15, 0.5), transparent 32rem),
    linear-gradient(180deg, rgba(10, 19, 17, 0.58) 0%, rgba(10, 19, 17, 0.34) 46%, rgba(10, 19, 17, 0.04) 100%);
  pointer-events: none;
}

.hero-copy,
.hero-art {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(62vw, 940px);
  max-width: 940px;
  padding-top: clamp(54px, 10vh, 124px);
  padding-left: clamp(16px, 3vw, 52px);
  text-align: left;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading > .eyebrow {
  color: var(--paper);
  font-family:
    "Archivo Black", Sora, Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: center;
}

.practical > .section-heading > .eyebrow {
  color: #17342b;
}

.hero .eyebrow,
.artist-card span,
.ticket-card-featured p {
  color: var(--moon);
}

.hero-copy > .eyebrow {
  margin: 0 0 18px;
  font-size: clamp(0.98rem, 1.28vw, 1.18rem);
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-kicker span + span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-kicker span + span::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 999px;
  background: var(--paper);
  opacity: 0.9;
}

.hero-kicker span:first-child {
  color: var(--fern);
}

.hero-kicker span + span {
  color: var(--fern);
}

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

h1 {
  max-width: none;
  position: relative;
  margin: 14px 0 34px -0.055em;
  color: #fffaf0;
  text-shadow:
    0 0 18px rgba(194, 162, 114, 0.16),
    0 0 10px rgba(255, 250, 240, 0.1),
    0 2px 2px rgba(0, 0, 0, 0.2);
  font-family:
    "Archivo Black", Sora, Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: clamp(6.35rem, 16.4vw, 13.8rem);
  font-weight: 400;
  font-stretch: normal;
  line-height: 0.78;
  letter-spacing: 0.018em;
  text-transform: uppercase;
  transform: scaleX(1.08);
  transform-origin: left center;
  white-space: nowrap;
}

h1::before,
h1::after {
  display: none;
}

.wide-letter {
  display: inline-block;
  transform: scaleX(1.08);
  transform-origin: center;
}

.wide-letter-f {
  margin-left: 0.012em;
  margin-right: 0.024em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 6vw, 5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.1;
  letter-spacing: 0;
}

h4 {
  margin-bottom: 10px;
  font-size: clamp(1.28rem, 2.2vw, 1.85rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  width: min(100%, 760px);
  max-width: none;
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.78);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
}

.hero-note {
  display: block;
  margin-top: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--moon);
  box-shadow: 0 14px 34px rgba(194, 162, 114, 0.28);
}

.button-secondary {
  color: var(--paper);
  border-color: rgba(255, 250, 240, 0.34);
  background: rgba(255, 250, 240, 0.08);
}

.hero-actions .button {
  min-width: 176px;
  min-height: 56px;
  border-radius: 2px;
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-actions .button-secondary {
  border-color: rgba(255, 250, 240, 0.72);
  background: rgba(10, 19, 17, 0.18);
}

.ticket-card .button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--paper);
}

.hero-art {
  align-self: end;
  justify-self: center;
  grid-row: 1 / 3;
  position: relative;
  width: min(72vw, 850px);
  min-width: 390px;
  height: 100%;
  min-height: min(90svh, 890px);
  pointer-events: none;
}

.hero-moon {
  position: absolute;
  top: 45%;
  bottom: auto;
  left: 46%;
  width: min(57vw, 655px);
  max-width: none;
  opacity: 1;
  transform: translate(-50%, -50%);
}

.hero-art > img:not(.hero-moon) {
  position: absolute;
  right: 50%;
  bottom: max(-16vh, -165px);
  z-index: 1;
  width: min(70vw, 830px);
  max-width: none;
  max-height: none;
  object-fit: contain;
  transform: translateX(42%);
  opacity: 1;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.18));
}

.marquee {
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.marquee div {
  display: flex;
  width: max-content;
  min-height: 76px;
  align-items: center;
  gap: 140px;
  padding-inline: 18px;
  animation: marquee 220s linear infinite;
}

.marquee span {
  font-size: clamp(1.28rem, 2vw, 1.72rem);
  font-weight: 650;
  white-space: nowrap;
}

.marquee span::before {
  margin-right: 140px;
  color: var(--moon);
  font-size: 0.74em;
  letter-spacing: 0.14em;
  content: "ENITEN ODOTAN";
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
  padding: clamp(72px, 10vw, 128px) 0;
}

.section-heading {
  display: block;
  margin-bottom: clamp(28px, 5vw, 54px);
  text-align: center;
}

.practical-list,
.ticket-grid {
  display: grid;
  gap: 16px;
}

.lineup-band {
  color: var(--paper);
  background:
    radial-gradient(circle at 12% 10%, rgba(38, 83, 78, 0.28), transparent 26rem),
    radial-gradient(circle at 88% 26%, rgba(4, 10, 10, 0.58), transparent 30rem),
    radial-gradient(circle at 18% 88%, rgba(2, 7, 7, 0.72), transparent 34rem),
    linear-gradient(180deg, rgba(255, 250, 240, 0.035), transparent 38%),
    #091716;
}

.lineup {
  width: min(var(--max), calc(100% - 36px));
}

.lineup-days {
  display: grid;
  gap: clamp(34px, 6vw, 64px);
}

.lineup-day {
  display: grid;
  gap: 18px;
}

.lineup-day-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.lineup-day-heading .eyebrow {
  color: var(--fern);
  font-size: clamp(1.28rem, 2vw, 1.7rem);
  letter-spacing: 0.16em;
}

.lineup-day-heading h3 {
  margin-bottom: 14px;
  color: var(--paper);
  font-size: clamp(2rem, 4vw, 3.5rem);
}

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

.artist-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 285px;
  padding: 24px;
  color: var(--paper);
  border-radius: 8px;
  background: var(--artist-image), var(--charcoal);
  background-position: var(--artist-position, center);
  background-size: cover;
  box-shadow: 0 16px 52px rgba(24, 25, 24, 0.2);
  outline: 0;
  transform-origin: center;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.artist-card-wide {
  grid-column: 1 / -1;
  min-height: 360px;
}

.artist-card-wide-short {
  min-height: auto;
  aspect-ratio: 2 / 1;
}

.artist-card-square {
  aspect-ratio: 1;
  min-height: auto;
}

.artist-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(24, 25, 24, 0.08) 0%, rgba(24, 25, 24, 0.34) 46%, rgba(24, 25, 24, 0.96) 100%);
  pointer-events: none;
}

.artist-card > * {
  position: relative;
  z-index: 1;
}

.artist-card:hover,
.artist-card.is-pointer-active,
.artist-card:focus-visible {
  z-index: 3;
  transform: scale(1.08);
  box-shadow: 0 26px 82px rgba(0, 0, 0, 0.32);
}

.artist-photo-crowd {
  --artist-image: url("../pictures/photo_2022-08-26_21-58-20.jpg");
  --artist-position: center 54%;
}

.artist-photo-ympyr {
  --artist-image: url("../pictures/ympyr%20taulukehyksess%C3%A4.png");
  --artist-position: center;
}

.artist-photo-soodamiehet {
  --artist-image: url("../pictures/soodamiehet.png");
  --artist-position: center;
}

.artist-photo-fire {
  --artist-image: url("../pictures/photo_2022-08-27_22-03-19.jpg");
  --artist-position: center 38%;
}

.artist-photo-nuna {
  --artist-image: url("../pictures/nuna-2.svg");
  --artist-position: center;
}

.artist-photo-hepolampi {
  --artist-image: url("../pictures/hepolampi.jpg");
  --artist-position: center;
}

.artist-photo-stage {
  --artist-image: url("../pictures/photo_2024-08-11_10-59-55.jpg");
  --artist-position: center 48%;
}

.artist-photo-medborgare {
  --artist-image: url("../pictures/medborgare.jpg");
  --artist-position: center 44%;
}

.artist-photo-warm {
  --artist-image: url("../pictures/photo_2022-08-27_22-22-22.jpg");
  --artist-position: center 34%;
}

.artist-photo-paasky {
  --artist-image: url("../pictures/paasky3.jpg");
  --artist-position: center 42%;
}

.artist-photo-am {
  --artist-image: url("../pictures/aM.jpg");
  --artist-position: center;
}

.artist-card span,
.info-panel span {
  display: block;
  margin-bottom: 16px;
  color: var(--fern);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.artist-card p {
  max-width: 410px;
  max-height: 0;
  margin-bottom: 0;
  overflow: hidden;
  color: rgba(255, 250, 240, 0.72);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.45;
  opacity: 0;
  transform: translateY(8px);
  transition:
    max-height 220ms ease,
    opacity 180ms ease,
    transform 220ms ease;
}

.artist-card h4 {
  margin-bottom: 0;
  overflow-wrap: anywhere;
  transition: margin-bottom 180ms ease;
}

.artist-card:hover h4,
.artist-card.is-pointer-active h4,
.artist-card:focus-visible h4 {
  margin-bottom: 10px;
}

.artist-card:hover p,
.artist-card.is-pointer-active p,
.artist-card:focus-visible p {
  max-height: 10rem;
  opacity: 1;
  transform: translateY(0);
}

.practical {
  border-top: 1px solid var(--line);
}

.practical-list {
  gap: 18px;
}

.info-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  min-height: 320px;
  padding: clamp(28px, 5vw, 54px);
  color: var(--paper);
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(24, 25, 24, 0.94), rgba(24, 25, 24, 0.76)),
    var(--charcoal);
  box-shadow: 0 24px 70px rgba(24, 25, 24, 0.18);
}

#ruokailu {
  background:
    linear-gradient(120deg, rgba(24, 25, 24, 0.94), rgba(24, 25, 24, 0.68)),
    url("../public/assets/nofe-tree-moon.svg") right 28px center / auto 86% no-repeat,
    var(--charcoal);
}

.info-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 82% 20%, rgba(194, 162, 114, 0.14), transparent 18rem),
    linear-gradient(180deg, rgba(24, 25, 24, 0.08), rgba(24, 25, 24, 0.36));
  pointer-events: none;
}

.info-panel > * {
  position: relative;
  z-index: 1;
}

.info-panel span {
  color: var(--fern);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  letter-spacing: 0.16em;
}

.info-panel p,
.ticket-card span {
  color: rgba(41, 39, 35, 0.72);
}

.info-panel p {
  color: rgba(255, 250, 240, 0.76);
}

.info-panel h3 {
  display: none;
}

.info-panel-content {
  align-self: start;
  max-width: 880px;
}

#ruokailu .info-panel-content {
  width: 100%;
  max-width: none;
}

.info-panel-content p {
  margin-bottom: 24px;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.info-panel-content ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.info-panel-content li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 250, 240, 0.7);
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
  line-height: 1.45;
}

.info-lead-list li {
  color: rgba(255, 250, 240, 0.76);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.info-panel-content li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 999px;
  background: var(--moon);
}

.food-menus li::before {
  display: none;
}

.food-menus {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
  margin-top: 28px;
}

.food-menus .breakfast-menu:first-child {
  grid-column: 1 / -1;
}

.breakfast-menu {
  width: 100%;
  min-height: 100%;
  padding: 22px 24px;
  color: var(--paper);
  text-align: center;
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(12, 18, 16, 0.56), rgba(28, 38, 33, 0.42)),
    rgba(12, 18, 16, 0.36);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(5px) brightness(0.82);
}

.breakfast-menu span {
  margin-bottom: 14px;
  color: var(--moon);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.breakfast-menu small {
  display: block;
  margin: -6px 0 14px;
  color: rgba(255, 250, 240, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breakfast-menu ul {
  display: grid;
  gap: 8px;
  justify-items: center;
  margin: 0;
  padding: 0;
}

.breakfast-menu li {
  position: relative;
  padding-left: 0;
  color: rgba(255, 250, 240, 0.84);
  font-size: clamp(1.08rem, 1.55vw, 1.24rem);
  font-weight: 700;
  text-align: center;
}

.breakfast-menu li em {
  display: block;
  margin-top: 2px;
  color: rgba(255, 250, 240, 0.62);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breakfast-menu .menu-spaced {
  margin-top: 12px;
}

@media (max-width: 760px) {
  .food-menus {
    grid-template-columns: 1fr;
  }

  .food-menus .breakfast-menu:first-child {
    grid-column: auto;
  }
}

.ticket-signup {
  display: block;
  padding: clamp(22px, 3vw, 34px);
  color: var(--paper);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(24, 25, 24, 0.92), rgba(24, 25, 24, 0.74)),
    url("../public/assets/nofe-tree-moon.svg") right 24px bottom 28px / auto 38% no-repeat,
    var(--charcoal);
  box-shadow: 0 24px 70px rgba(24, 25, 24, 0.18);
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.ticket-signup:hover,
.ticket-signup:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 30px 86px rgba(24, 25, 24, 0.28);
}

.ticket-registration {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px) clamp(16px, 3vw, 34px) clamp(10px, 2vw, 18px);
  margin-top: 8px;
  color: var(--paper);
  border-radius: 8px;
}

.ticket-registration h2 {
  margin-bottom: 14px;
}

.ticket-registration p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.76);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.tickets {
  color: var(--paper);
  background:
    linear-gradient(120deg, rgba(14, 31, 27, 0.9), rgba(54, 101, 75, 0.76)),
    url("../public/assets/zebra-turq-background.svg") center / 420px repeat,
    #14332b;
}

.ticket-grid {
  grid-template-columns: repeat(2, 1fr);
}

.ticket-card {
  display: flex;
  flex-direction: column;
  min-height: 350px;
  padding: 26px;
  color: var(--ink);
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  background: var(--paper);
}

.ticket-card-featured {
  color: var(--paper);
  background:
    linear-gradient(rgba(24, 25, 24, 0.82), rgba(24, 25, 24, 0.82)),
    var(--charcoal);
  box-shadow: var(--shadow);
}

.ticket-card-wide {
  grid-column: auto;
}

.ticket-card p {
  margin-bottom: 8px;
  font-weight: 900;
}

.ticket-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.ticket-card span {
  display: block;
  margin-bottom: 24px;
}

.ticket-card-featured span {
  color: rgba(255, 250, 240, 0.72);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 46px);
  color: var(--paper);
  background: var(--ink);
}

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

.footer-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.footer-brand p {
  margin: 0;
  font-family:
    "Archivo Black", Sora, Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.18rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-footer a {
  font-weight: 900;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (hover: none) {
  .artist-card p {
    max-height: 10rem;
    opacity: 1;
    transform: none;
  }

  .artist-card h4 {
    margin-bottom: 10px;
  }
}

/* Keep the desktop hero comfortable at 100% browser zoom. */
@media (min-width: 921px) {
  .hero-copy {
    width: min(53vw, 800px);
    max-width: 800px;
    padding-top: clamp(46px, 8.5vh, 105px);
    padding-left: clamp(14px, 2.55vw, 44px);
  }

  h1 {
    margin-bottom: 29px;
    font-size: clamp(5.4rem, 13.9vw, 11.75rem);
  }

  .hero-copy > p:not(.eyebrow) {
    width: min(100%, 646px);
    font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  }

  .hero-actions {
    margin-top: 31px;
  }

  .hero-actions .button {
    min-width: 150px;
    min-height: 48px;
    font-size: clamp(0.96rem, 1.1vw, 1.05rem);
  }

  .hero-art {
    width: min(61vw, 723px);
    min-width: 332px;
    min-height: min(76.5svh, 757px);
  }

  .hero-moon {
    width: min(48.5vw, 557px);
  }

  .hero-art > img:not(.hero-moon) {
    bottom: max(-13.5vh, -140px);
    width: min(59.5vw, 706px);
  }

  .lineup {
    width: min(1000px, calc(100% - 36px));
  }

  .artist-grid {
    gap: 14px;
  }

  .artist-card {
    padding: 20px;
  }

  .artist-card h4 {
    font-size: clamp(1.1rem, 1.85vw, 1.58rem);
  }

  .artist-card p {
    font-size: clamp(0.98rem, 1.22vw, 1.08rem);
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    width: 100%;
    max-width: 100vw;
  }

  .brand {
    min-width: 0;
    max-width: calc(100vw - 92px);
    gap: 8px;
  }

  .brand-text-desktop {
    display: none;
  }

  .brand-text-mobile {
    display: inline;
    font-family:
      "Archivo Black", Sora, Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
      sans-serif;
    overflow: hidden;
    font-size: clamp(0.66rem, 2.75vw, 0.86rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .brand img {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
  }

  .menu-button {
    position: fixed;
    top: 16px;
    right: 18px;
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 108px;
    background:
      linear-gradient(180deg, rgba(10, 19, 17, 0.76), rgba(10, 19, 17, 0.88)),
      url("../public/assets/zebra-turq-background.svg") center / 440px repeat,
      radial-gradient(circle at 50% 82%, rgba(194, 162, 114, 0.34), transparent 23rem),
      linear-gradient(160deg, var(--moss), var(--sky));
  }

  .hero-copy {
    width: 100%;
    z-index: 2;
    margin-top: clamp(-520px, -61vh, -410px);
  }

  .hero-kicker {
    justify-content: center;
    position: relative;
    width: 100%;
    padding: 0;
    margin-right: 0;
    margin-bottom: 16px;
    margin-left: 0;
    background: transparent;
    text-align: center;
  }

  .hero-kicker::before {
    display: none;
  }

  .hero-art {
    order: -1;
    grid-row: auto;
    justify-self: start;
    width: 100%;
    width: min(100%, 590px);
    min-width: 0;
    height: min(52svh, 520px);
  }

  .hero-art > img:not(.hero-moon) {
    content: url("../pictures/nofe pelkka puu levea.png");
    right: auto;
    bottom: max(29vh, 260px);
    left: 50%;
    width: calc(100vw + 52px);
    max-width: none;
    transform: translateX(-50%);
  }

  .hero-moon {
    top: 24%;
    bottom: auto;
    left: 50%;
    width: min(102%, 545px);
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .artist-grid,
  .practical-list,
  .ticket-grid {
    grid-template-columns: 1fr;
  }

  .info-panel {
    grid-template-columns: 1fr;
  }

  .ticket-registration {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 620px) {
  .hero {
    padding-right: 18px;
    padding-left: 18px;
    padding-bottom: 28px;
    overflow: hidden;
  }

  .hero-copy {
    min-width: 0;
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    padding-right: 0;
    padding-left: 0;
  }

  .hero-copy > p:not(.eyebrow) {
    align-self: center;
    width: min(100%, 34rem);
    max-width: 100%;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
    width: min(100%, 34rem);
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-kicker span:first-child {
    color: var(--fern);
    font-size: 1.12em;
  }

  .hero-kicker span + span {
    font-size: 0.92em;
  }

  .hero-kicker span + span::before {
    display: none;
  }

  h1 {
    display: flex;
    justify-content: center;
    align-self: center;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    text-align: center;
    font-family:
      "Archivo Black", Sora, Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
      sans-serif;
    font-size: clamp(4.35rem, 19.5vw, 5.45rem);
    font-weight: 400;
    letter-spacing: 0;
    text-shadow: none;
    transform: none;
  }

  .wide-letter {
    transform: scaleX(1.04);
  }

  .wide-letter-f {
    margin-left: 0.012em;
    margin-right: 0.024em;
  }

  h1::before,
  h1::after {
    display: none;
  }

  .hero-actions .button {
    flex: 0 0 100%;
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .marquee div {
    gap: 54px;
    min-height: 84px;
    animation-duration: 145s;
  }

  .marquee span {
    color: #fffaf0;
    font-size: 1.22rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.2;
  }

  .marquee span::before {
    margin-right: 54px;
    font-size: 0.78em;
    letter-spacing: 0.08em;
  }

  .artist-grid {
    gap: 22px;
  }

  .lineup-day-heading {
    justify-content: center;
    text-align: center;
  }

  .artist-card,
  .artist-card-square,
  .artist-card-wide,
  .artist-card-wide-short {
    display: grid;
    grid-template-rows: auto auto auto;
    min-height: auto;
    aspect-ratio: auto;
    padding: 0;
    background: #111413;
  }

  .artist-card::before {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px 8px 0 0;
    background:
      linear-gradient(180deg, rgba(17, 20, 19, 0.04), rgba(17, 20, 19, 0.18)),
      var(--artist-image),
      var(--charcoal);
    background-position: var(--artist-position, center);
    background-size: cover;
  }

  .artist-card p {
    width: 100%;
    max-width: 100%;
    max-height: none;
    padding: 0 20px 24px;
    color: rgba(255, 250, 240, 0.82);
    font-size: 1.02rem;
    opacity: 1;
    transform: none;
  }

  .artist-card h4 {
    width: 100%;
    max-width: 100%;
    padding: 20px 20px 10px;
    margin-bottom: 0;
  }

  .artist-photo-paasky {
    --artist-image: url("../pictures/paasky1.jpg");
    --artist-position: center;
  }

  .info-panel,
  .ticket-card {
    min-height: 240px;
  }


  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand {
    gap: 8px;
  }

  .footer-brand img {
    width: 28px;
    height: 28px;
  }

  .footer-brand p {
    font-size: clamp(0.66rem, 2.75vw, 0.86rem);
  }
}
