:root {
  --ink: #151515;
  --paper: #f5f3ee;
  --pink: #ff5a83;
  --lime: #d9ff56;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
}
header {
  height: 86px;
  padding: 0 5.2vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d6d4cf;
}

main {
  margin-top: 4px;
}

.brand {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -2px;
  text-decoration: none;
  color: inherit;
}
.brand b {
  display: inline-grid;
  place-items: center;
  width: 27px;
  height: 27px;
  background: var(--ink);
  color: var(--lime);
  border-radius: 99px;
  font-size: 18px;
}
.brand sup {
  font: 7px "DM Mono";
  vertical-align: top;
}
nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
nav a,
footer a {
  font-size: 13px;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}
.outline {
  border: 1px solid var(--ink);
  border-radius: 22px;
  padding: 10px 15px;
}
.menu {
  display: none;
  border: 0;
  background: none;
  font-size: 22px;
}
.hero {
  min-height: 630px;
  padding: 8vw 5.2vw;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  position: relative;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 1.2px;
  font-weight: 800;
  margin: 0 0 22px;
}
.eyebrow::first-letter {
  color: var(--pink);
}
h1,
h2 {
  letter-spacing: -0.08em;
  line-height: 0.92;
  margin: 0;
  font-weight: 800;
}
h1 {
  font-size: clamp(55px, 8vw, 110px);
}
h1 i,
h2 i {
  font-family: Georgia, serif;
  font-weight: 400;
}
.lead {
  max-width: 405px;
  font-size: 15px;
  line-height: 1.7;
  margin: 28px 0;
}
.button {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  padding: 17px 21px;
}
.poster {
  width: 32vw;
  max-width: 485px;
  height: 550px;
  background: var(--pink);
  position: absolute;
  right: 5.2vw;
  top: 45px;
  padding: 25px;
  color: #fff;
  overflow: hidden;
  font-size: 12px;
  font-weight: 800;
}
.poster:before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: #f9dd4d;
  border-radius: 50%;
  top: 80px;
  left: 70px;
  mix-blend-mode: multiply;
}
.poster span {
  position: absolute;
  right: 25px;
  top: 25px;
  font: 11px "DM Mono";
}
.poster p {
  position: relative;
  z-index: 1;
}
.stub {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 48px;
  width: 205px;
  height: 260px;
  background: var(--ink);
  padding: 17px;
  font: 9px "DM Mono";
  transform: rotate(-11deg);
  box-shadow: 12px 13px #0002;
}
.stub strong {
  display: block;
  font: 800 29px/0.88 Manrope;
  letter-spacing: -2px;
  margin-top: 64px;
}
.stub::after {
  content: "✦";
  color: var(--lime);
  font-size: 35px;
  position: absolute;
  right: 18px;
  bottom: 14px;
}
section {
  padding: 115px 5.2vw;
  background: #fff;
}
.heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 44px;
}
.heading h2,
section h2 {
  font-size: clamp(39px, 5vw, 68px);
}
.heading p {
  max-width: 250px;
  font-size: 13px;
  line-height: 1.6;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.art {
  height: 285px;
  padding: 26px;
  position: relative;
  font-size: 29px;
  line-height: 0.86;
  letter-spacing: -2px;
  font-weight: 800;
  overflow: hidden;
}
.art:after {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  right: -74px;
  bottom: -130px;
  background: #ffc2d3;
}
.art i {
  font-family: Georgia, serif;
  font-weight: 400;
}
.art small {
  position: absolute;
  bottom: 18px;
  left: 26px;
  font: 11px "DM Mono";
}
.pink {
  background: var(--pink);
}
.blue {
  background: #6266dc;
  color: #fff;
}
.blue:after {
  background: #bee3fd;
}
.yellow {
  background: var(--lime);
}
.yellow:after {
  background: var(--pink);
}
h3 {
  font-size: 18px;
  letter-spacing: -0.7px;
  margin: 6px 0;
}
.date,
.place {
  font-size: 11px;
  color: #777;
  margin: 18px 0 0;
}
.place {
  margin: 0;
}
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 10vw;
  background: var(--paper);
}
.about-art {
  height: 465px;
  background: var(--ink);
  color: #fff;
  padding: 36px;
  font-size: 54px;
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -4px;
  position: relative;
}
.about-art:after {
  content: "";
  position: absolute;
  left: 25%;
  top: 25%;
  width: 50%;
  aspect-ratio: 1;
  background: var(--lime);
  border-radius: 50%;
  opacity: 0.95;
}
.about-art span {
  color: var(--lime);
}
.link {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  border-bottom: 1px solid;
  padding-bottom: 5px;
  text-decoration: none;
}
.faq {
  background: #e8e6e0;
}
.faq h2 {
  margin-bottom: 44px;
}
.faq details {
  max-width: 820px;
  border-top: 1px solid #aaa;
  padding: 20px 0;
}
.faq details:last-child {
  border-bottom: 1px solid #aaa;
}
.faq summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
}
.faq summary b {
  font-size: 25px;
  font-weight: 400;
  color: var(--ink);
}
.faq details p {
  max-width: 660px;
  line-height: 1.6;
  font-size: 14px;
}
.back-to-top {
  margin: 24px 0 32px;
  font-size: 14px;
}
.back-to-top a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}
.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--pink);
}
.white {
  background: var(--paper);
  color: var(--ink);
}
footer {
  background: var(--ink);
  color: #fff;
  padding: 55px 5.2vw 25px;
}
footer > div:first-child {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding-bottom: 70px;
}
footer .brand b {
  background: var(--lime);
  color: var(--ink);
}
footer p {
  font-size: 13px;
  color: #bbb;
  margin: 7px 0;
}
.foot {
  border-top: 1px solid #444;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  color: #aaa;
  font-size: 10px;
}
.foot a {
  color: #fff;
  margin-left: 20px;
}
.legal {
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: 45px 5.2vw;
}
.legal h1 {
  font-size: clamp(55px, 8vw, 100px);
}
.legal > p {
  font: 11px "DM Mono";
  color: #777;
  margin: 24px 0 62px;
}
.legal article {
  max-width: 760px;
  margin: 0 auto;
}
.legal h2 {
  font-size: 21px;
  letter-spacing: -0.5px;
  margin: 38px 0 9px;
}
.legal article p {
  font-size: 14px;
  line-height: 1.75;
}
@media (max-width: 760px) {
  header {
    height: 70px;
    padding: 0 6vw;
  }
  .menu {
    display: block;
  }
  nav {
    display: none;
    position: absolute;
    z-index: 4;
    top: 70px;
    left: 0;
    right: 0;
    padding: 25px 6vw;
    background: var(--paper);
    flex-direction: column;
    align-items: start;
  }
  .open {
    display: flex;
  }
  .hero {
    display: block;
    min-height: 790px;
    padding: 70px 6vw;
  }
  .poster {
    width: 70vw;
    height: 350px;
    top: auto;
    bottom: 35px;
    right: 6vw;
    z-index: 0;
  }
  .stub {
    transform: scale(0.68) rotate(-11deg);
    transform-origin: bottom right;
    right: 10px;
    bottom: 18px;
  }
  .button {
    position: relative;
    z-index: 1;
  }
  section {
    padding: 76px 6vw;
  }
  .heading {
    display: block;
  }
  .heading p {
    margin-top: 24px;
  }
  .cards {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .about {
    display: block;
  }
  .about-art {
    height: 350px;
    margin-bottom: 65px;
  }
  .cta {
    display: block;
  }
  .cta .button {
    margin-top: 30px;
  }
  footer {
    padding: 45px 6vw 24px;
  }
  footer > div:first-child {
    display: block;
    padding-bottom: 35px;
  }
  footer > div:first-child p {
    margin: 25px 0;
  }
  .foot {
    display: block;
  }
  .foot span {
    display: block;
    margin: 16px 0;
  }
  .foot a:first-child {
    margin-left: 0;
  }
  .legal {
    padding: 75px 6vw;
  }
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid #d6d4cf;
  border-radius: 999px;
  margin-left: auto;
  margin-right: 22px;
  background: #fff;
}
.language-switcher button {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 6px 8px;
  color: #777;
  font:
    800 10px Manrope,
    Arial,
    sans-serif;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: 0.2s;
}
.language-switcher button.active {
  background: #151515;
  color: #d9ff56;
}
@media (max-width: 760px) {
  .language-switcher {
    margin-left: auto;
    margin-right: 12px;
  }
  .language-switcher button {
    padding: 6px 7px;
  }
}

/* Baltic-inspired visual system and motion */
:root {
  --ink: #12332d;
  --paper: #f6f3e9;
  --pink: #bd4c41;
  --lime: #e5ad42;
  --blue: #315f70;
  --line: #d4cfc0;
}
body {
  background: var(--paper);
  background-image: radial-gradient(
    circle at 80% 10%,
    rgba(229, 173, 66, 0.13),
    transparent 23rem
  );
}
header {
  background: rgba(246, 243, 233, 0.9);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.brand b {
  background: var(--ink);
  color: #f5bc4e;
}
.outline {
  border-color: var(--ink);
}
.hero {
  background: linear-gradient(115deg, #f6f3e9 0%, #f6f3e9 64%, #e7ddc5 64%);
}
.hero:after {
  content: "";
  position: absolute;
  pointer-events: none;
  left: 0;
  right: 0;
  bottom: 0;
  height: 13px;
  opacity: 0.48;
  background: repeating-linear-gradient(
    45deg,
    transparent 0 9px,
    var(--ink) 10px 12px,
    transparent 13px 22px
  );
}
.eyebrow {
  color: #6b4f24;
}
.eyebrow::first-letter {
  color: #bd4c41;
}
.poster {
  background: #315f70;
  box-shadow: 18px 22px 0 #c9bfa7;
}
.poster:before {
  background: #e5ad42;
}
.poster:after {
  background: #26483e;
}
.stub {
  background: #12332d;
}
.stub::after {
  color: #e5ad42;
}
.button {
  background: #12332d;
  border-radius: 999px;
  box-shadow: 0 0 0 1px #12332d;
}
.button:hover {
  background: #bd4c41;
}
.cards article {
  border-bottom: 1px solid #cdc5b2;
  padding-bottom: 20px;
}
.card-link {
  color: inherit;
  text-decoration: none;
  display: block;
}
.card-link:hover .buy-button {
  background: #fff;
  color: #12332d;
  box-shadow: inset 0 0 0 0 #12332d;
}
.price-range {
  margin: 10px 0 6px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #12332d;
}
.buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: #12332d;
  color: #f6f3e9;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.card-link:hover .buy-button {
  transform: translateY(-1px);
}
.cards article:hover .art:before {
  transform: scale(1.15) rotate(8deg);
}
.art:before {
  content: "";
  position: absolute;
  inset: 0;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  background: repeating-linear-gradient(
    45deg,
    transparent 0 32px,
    rgba(255, 255, 255, 0.13) 33px 35px
  );
}
.pink {
  background: #bd4c41;
}
.blue {
  background: #315f70;
}
.yellow {
  background: #e5ad42;
}
.about {
  background: #e7ddc5;
}
.about-art {
  background: #12332d;
}
.about-art:after {
  background: #e5ad42;
  box-shadow:
    0 0 0 1px #e5ad42,
    0 0 0 58px #12332d,
    0 0 0 59px #e5ad42;
  animation: slowSpin 18s linear infinite;
}
.faq {
  background: #eee7d8;
}
.cta {
  background: #bd4c41;
  position: relative;
  overflow: hidden;
}
.cta:before {
  content: "?  ?  ?";
  position: absolute;
  right: 4vw;
  top: 20px;
  color: #e5ad42;
  font-size: 42px;
  letter-spacing: 18px;
  opacity: 0.7;
}
.white {
  background: #f6f3e9;
}
.language-switcher {
  border-color: #c6bda9;
  background: #f6f3e9;
}
.language-switcher button.active {
  background: #12332d;
  color: #e5ad42;
}
footer {
  background: #12332d;
}
footer .brand b {
  background: #e5ad42;
  color: #12332d;
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s ease var(--reveal-delay),
    transform 0.8s cubic-bezier(0.2, 0.75, 0.25, 1) var(--reveal-delay);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.poster.reveal {
  transform: translateY(25px) rotate(-2deg);
}
.poster.reveal.is-visible {
  transform: rotate(-2deg);
}
.hero.reveal {
  opacity: 1;
  transform: none;
}
@keyframes slowSpin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 760px) {
  .hero {
    background: linear-gradient(160deg, #f6f3e9 0%, #f6f3e9 56%, #e7ddc5 56%);
  }
  .cta:before {
    font-size: 25px;
  }
  .reveal {
    transform: translateY(20px);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Refined editorial direction */
body {
  letter-spacing: -0.01em;
}
header {
  border-bottom-color: #c9c1ae;
}
.hero {
  min-height: 690px;
  align-items: center;
  padding-top: 95px;
  padding-bottom: 95px;
}
.hero h1 {
  max-width: 760px;
  font-size: clamp(62px, 8.7vw, 132px);
  letter-spacing: -0.095em;
}
.hero .lead {
  font-size: 16px;
  max-width: 360px;
}
.poster {
  width: min(31vw, 460px);
  height: 530px;
  border-radius: 2px;
  box-shadow: 24px 26px 0 rgba(18, 51, 45, 0.13);
}
.poster p {
  font:
    700 10px/1.05 "DM Mono",
    monospace;
  letter-spacing: 1px;
}
.stub {
  border-top: 2px solid var(--lime);
}
section {
  padding-top: 135px;
  padding-bottom: 135px;
}
.heading {
  border-bottom: 1px solid #d1c9b7;
  padding-bottom: 33px;
  margin-bottom: 34px;
}
.heading p {
  font-size: 14px;
  color: #5a554b;
}
.cards {
  gap: 0;
  border-top: 1px solid #d1c9b7;
  border-bottom: 1px solid #d1c9b7;
}
.cards article {
  padding: 0 20px 25px;
  border-right: 1px solid #d1c9b7;
  border-bottom: 0;
}
.cards article:first-child {
  padding-left: 0;
}
.cards article:last-child {
  padding-right: 0;
  border-right: 0;
}
.art {
  height: 310px;
  margin-bottom: 20px;
}
.date {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  color: #7f735d;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.event-card h3,
h3 {
  font-size: 20px;
}
.about {
  grid-template-columns: 1.08fr 0.92fr;
}
.about-art {
  height: 520px;
  font-size: 62px;
  padding: 44px;
}
.about-art:before {
  content: "M T I C K E T  O I  �  R I G A  �  V I L N I U S  �  T A L L I N N";
  position: absolute;
  bottom: 27px;
  left: 42px;
  right: 20px;
  font:
    9px "DM Mono",
    monospace;
  letter-spacing: 2px;
  color: #e5ad42;
  white-space: nowrap;
}
.about-copy {
  max-width: 520px;
}
.faq {
  padding-top: 125px;
  padding-bottom: 125px;
}
.faq details {
  max-width: 100%;
  padding: 25px 0;
}
.faq summary {
  font-size: 20px;
}
.faq summary b {
  color: #bd4c41;
}
.cta {
  padding-top: 122px;
  padding-bottom: 122px;
}
.cta h2 {
  font-size: clamp(46px, 5.8vw, 84px);
  max-width: 760px;
}
.cta .button {
  min-width: 202px;
  justify-content: center;
}
.foot {
  font-family: "DM Mono", monospace;
  letter-spacing: 0.1px;
}
.foot a {
  font-family: Manrope, Arial, sans-serif;
}
.language-switcher {
  box-shadow: 0 2px 8px rgba(18, 51, 45, 0.07);
}
.language-switcher button {
  min-width: 30px;
}
.language-switcher button:hover {
  color: #12332d;
  background: #eadfca;
}
@media (max-width: 760px) {
  .hero {
    min-height: 790px;
    padding-top: 74px;
  }
  .hero h1 {
    font-size: clamp(57px, 15vw, 82px);
  }
  .poster {
    height: 345px;
    width: 72vw;
  }
  .heading {
    padding-bottom: 25px;
  }
  .cards {
    display: block;
    border-bottom: 0;
  }
  .cards article,
  .cards article:first-child,
  .cards article:last-child {
    padding: 0 0 30px;
    margin-bottom: 30px;
    border-right: 0;
    border-bottom: 1px solid #d1c9b7;
  }
  .art {
    height: 275px;
  }
  .about-art {
    height: 390px;
    font-size: 51px;
    padding: 32px;
  }
  .about-art:before {
    left: 30px;
    bottom: 21px;
    font-size: 7px;
    letter-spacing: 1px;
  }
  .cta {
    padding-top: 86px;
    padding-bottom: 86px;
  }
}

/* Bold night-poster direction */
:root {
  --ink: #11112c;
  --paper: #fff8e9;
  --pink: #ff3d9a;
  --lime: #e9ff4f;
  --blue: #4e54ff;
}
body {
  background: #fff8e9;
  color: #11112c;
}
header {
  background: rgba(255, 248, 233, 0.88);
  border-bottom: 2px solid #11112c;
}
.brand b {
  background: #ff3d9a;
  color: #fff8e9;
}
.hero {
  isolation: isolate;
  background: #11112c;
  color: #fff8e9;
  min-height: 720px;
}
.hero:before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -1;
  background:
    radial-gradient(circle at 71% 32%, #ff3d9a 0 10%, transparent 28%),
    radial-gradient(circle at 88% 74%, #e9ff4f 0 8%, transparent 23%),
    radial-gradient(circle at 48% 88%, #4e54ff 0 13%, transparent 34%);
  filter: blur(2px);
  animation: aurora 14s ease-in-out infinite alternate;
}
.hero:after {
  background: repeating-linear-gradient(
    90deg,
    transparent 0 26px,
    rgba(255, 255, 255, 0.2) 27px 29px,
    transparent 30px 58px
  );
  opacity: 0.22;
}
.hero .eyebrow {
  color: #e9ff4f;
}
.hero h1 {
  position: relative;
  z-index: 1;
  text-shadow: 5px 5px 0 #ff3d9a;
}
.hero .lead {
  color: #fff8e9;
}
.hero .button {
  background: #e9ff4f;
  color: #11112c;
  border-radius: 0;
  box-shadow: 6px 6px 0 #ff3d9a;
}
.hero .button:hover {
  background: #ff3d9a;
  color: #fff8e9;
  box-shadow: 6px 6px 0 #e9ff4f;
}
.poster {
  background: #ff3d9a;
  border: 2px solid #fff8e9;
  box-shadow:
    12px 12px 0 #e9ff4f,
    24px 24px 0 #4e54ff;
  transform: rotate(3deg) !important;
}
.poster:before {
  background: #e9ff4f;
}
.poster:after {
  background: #4e54ff;
}
.stub {
  background: #11112c;
  border-top: 0;
}
.stub::after {
  color: #e9ff4f;
}
.heading {
  border-bottom: 2px solid #11112c;
}
.heading h2 {
  font-size: clamp(50px, 6vw, 87px);
  text-transform: uppercase;
}
.cards {
  gap: 24px;
  border: 0;
}
.cards article,
.cards article:first-child,
.cards article:last-child {
  padding: 0;
  border: 0;
}
.cards article:nth-child(2) {
  margin-top: 42px;
}
.cards article:nth-child(3) {
  margin-top: 15px;
}
.art {
  border: 2px solid #11112c;
  box-shadow: 7px 7px 0 #11112c;
}
.art:before {
  background: repeating-linear-gradient(
    -45deg,
    transparent 0 22px,
    rgba(255, 255, 255, 0.28) 23px 25px
  );
}
.pink {
  background: #ff3d9a;
}
.blue {
  background: #4e54ff;
}
.yellow {
  background: #e9ff4f;
}
.event-info,
h3 {
  font-weight: 800;
}
.about {
  background: #e9ff4f;
  position: relative;
  overflow: hidden;
}
.about:before {
  content: "M � M � M � M � M � M � M";
  position: absolute;
  left: -2vw;
  right: -2vw;
  top: 4px;
  font-size: 8vw;
  font-weight: 800;
  letter-spacing: -0.12em;
  line-height: 1;
  color: #11112c;
  opacity: 0.1;
  white-space: nowrap;
}
.about-art {
  background: #4e54ff;
  border: 3px solid #11112c;
  box-shadow: 15px 15px 0 #ff3d9a;
}
.about-art:after {
  background: #ff3d9a;
  box-shadow:
    0 0 0 1px #ff3d9a,
    0 0 0 58px #4e54ff,
    0 0 0 59px #ff3d9a;
}
.faq {
  background: #fff8e9;
}
.faq details {
  border-top: 2px solid #11112c;
}
.faq details:last-child {
  border-bottom: 2px solid #11112c;
}
.faq summary {
  font-size: 23px;
}
.faq summary b {
  font-size: 32px;
  color: #ff3d9a;
}
.cta {
  background: #4e54ff;
  color: #fff8e9;
}
.cta:before {
  content: "TICKETS  �  TONIGHT  �  TICKETS  �  TONIGHT";
  left: -3%;
  right: -3%;
  top: 12px;
  white-space: nowrap;
  font:
    800 13px "DM Mono",
    monospace;
  letter-spacing: 3px;
  color: #e9ff4f;
  opacity: 1;
}
.cta .button {
  background: #ff3d9a;
  color: #fff8e9;
  border: 2px solid #fff8e9;
  border-radius: 0;
  box-shadow: 7px 7px 0 #e9ff4f;
}
footer {
  background: #11112c;
}
.language-switcher {
  border: 2px solid #11112c;
  background: #fff8e9;
  box-shadow: 3px 3px 0 #ff3d9a;
}
.language-switcher button.active {
  background: #4e54ff;
  color: #e9ff4f;
}
@keyframes aurora {
  0% {
    transform: translate(-2%, -2%) rotate(0deg) scale(1);
  }
  100% {
    transform: translate(3%, 4%) rotate(9deg) scale(1.1);
  }
}
@media (max-width: 760px) {
  .hero h1 {
    text-shadow: 3px 3px 0 #ff3d9a;
  }
  .poster {
    box-shadow:
      8px 8px 0 #e9ff4f,
      16px 16px 0 #4e54ff;
  }
  .cards article:nth-child(2),
  .cards article:nth-child(3) {
    margin-top: 0;
  }
  .about-art {
    box-shadow: 9px 9px 0 #ff3d9a;
  }
  .faq summary {
    font-size: 18px;
  }
}

/* Final direction: warm concert night, Baltic restraint */
:root {
  --ink: #201a1c;
  --paper: #f6f0e5;
  --pink: #7d2337;
  --lime: #cf9c55;
  --blue: #2d2528;
  --line: #d8cab6;
}
body {
  background: var(--paper);
  color: var(--ink);
  background-image: none;
}
header {
  background: rgba(246, 240, 229, 0.94);
  border-bottom: 1px solid var(--line);
}
.brand b {
  background: #7d2337;
  color: #f6f0e5;
}
.outline {
  border: 1px solid #7d2337;
  color: #7d2337;
}
.outline:hover {
  background: #7d2337;
  color: #fff;
}
.hero {
  min-height: 700px;
  background: #2d2528;
  color: #fff;
  padding-top: 100px;
}
.hero:before {
  inset: 0;
  z-index: -1;
  filter: none;
  animation: none;
  background:
    radial-gradient(
      ellipse 42% 58% at 82% 40%,
      rgba(190, 118, 64, 0.65),
      transparent 72%
    ),
    radial-gradient(
      ellipse 24% 43% at 68% 70%,
      rgba(125, 35, 55, 0.75),
      transparent 78%
    ),
    linear-gradient(120deg, #211b1e 5%, #2f2428 58%, #5b2832 100%);
}
.hero:after {
  height: 100%;
  top: 0;
  bottom: auto;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 84px,
    rgba(255, 255, 255, 0.045) 85px 86px
  );
  opacity: 1;
}
.hero .eyebrow {
  color: #e5c389;
}
.hero h1 {
  font-size: clamp(59px, 8.25vw, 120px);
  text-shadow: none;
  letter-spacing: -0.09em;
}
.hero h1 i {
  color: #e5c389;
}
.hero .lead {
  color: #eee6da;
}
.hero .button {
  background: #e5c389;
  color: #2d2528;
  border-radius: 2px;
  box-shadow: none;
}
.hero .button:hover {
  background: #fff4df;
  color: #7d2337;
  box-shadow: none;
}
.poster {
  right: 7vw;
  top: 72px;
  width: min(29vw, 430px);
  height: 500px;
  background: linear-gradient(150deg, #842b40, #3a2128);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 18px 18px 0 rgba(0, 0, 0, 0.18);
  transform: rotate(0) !important;
}
.poster:before {
  width: 430px;
  height: 430px;
  left: -95px;
  top: 115px;
  background: radial-gradient(
    circle,
    #e9bf73 0 5%,
    #c2774d 31%,
    transparent 70%
  );
  mix-blend-mode: screen;
}
.poster:after {
  width: 280px;
  height: 280px;
  left: 105px;
  bottom: -95px;
  background: #251b1e;
  opacity: 0.55;
}
.stub {
  right: 31px;
  bottom: 35px;
  background: #f6f0e5;
  color: #2d2528;
  transform: rotate(-6deg);
  box-shadow: 10px 12px 0 rgba(0, 0, 0, 0.16);
}
.stub::after {
  color: #7d2337;
}
.stub strong {
  font-weight: 800;
}
.heading {
  border-bottom: 1px solid var(--line);
}
.heading h2 {
  font-size: clamp(43px, 5.4vw, 76px);
  text-transform: none;
}
.cards {
  gap: 22px;
  border: 0;
}
.cards article,
.cards article:first-child,
.cards article:last-child {
  padding: 0 0 22px;
  border: 0;
  border-bottom: 1px solid var(--line);
}
.cards article:nth-child(2),
.cards article:nth-child(3) {
  margin-top: 0;
}
.art {
  height: 292px;
  border: 0;
  box-shadow: none;
}
.art:before {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14),
    transparent 48%
  );
}
.pink {
  background: #7d2337;
  color: #fff;
}
.blue {
  background: #41363a;
}
.yellow {
  background: #d9ad68;
}
.about {
  background: #e9dfcd;
}
.about:before {
  display: none;
}
.about-art {
  height: 485px;
  background: #2d2528;
  border: 0;
  box-shadow: none;
}
.about-art:after {
  background: #c8914e;
  box-shadow:
    0 0 0 1px #c8914e,
    0 0 0 58px #2d2528,
    0 0 0 59px #c8914e;
  animation: slowSpin 28s linear infinite;
}
.about-art:before {
  color: #c8914e;
}
.faq {
  background: #f6f0e5;
}
.faq details {
  border-top: 1px solid #aa9981;
}
.faq details:last-child {
  border-bottom: 1px solid #aa9981;
}
.faq summary {
  font-size: 19px;
}
.faq summary b {
  color: #7d2337;
}
.cta {
  background: #7d2337;
  color: #fff;
}
.cta:before {
  content: "MTICKET OI � LIVE MUSIC � MTICKET OI � LIVE MUSIC";
  color: #e5c389;
  left: 0;
  right: 0;
  top: 17px;
  font:
    500 10px "DM Mono",
    monospace;
  letter-spacing: 2px;
  opacity: 0.85;
}
.cta .button {
  background: #e5c389;
  color: #2d2528;
  border: 0;
  border-radius: 2px;
  box-shadow: none;
}
footer {
  background: #2d2528;
}
.language-switcher {
  border: 1px solid #b8a992;
  background: #f6f0e5;
  box-shadow: none;
}
.language-switcher button.active {
  background: #7d2337;
  color: #f7e7c9;
}
.reveal {
  transition-duration: 0.7s;
}
@media (max-width: 760px) {
  .hero {
    min-height: 790px;
    padding-top: 73px;
  }
  .hero h1 {
    font-size: clamp(56px, 15vw, 78px);
  }
  .poster {
    right: 6vw;
    top: auto;
    bottom: 35px;
    width: 70vw;
    height: 340px;
  }
  .about-art {
    height: 365px;
  }
  .cta:before {
    white-space: nowrap;
    font-size: 8px;
    letter-spacing: 1.5px;
  }
  .cards article,
  .cards article:first-child,
  .cards article:last-child {
    margin-bottom: 27px;
    padding-bottom: 27px;
  }
}

/* Gentle motion details */
.hero .poster {
  animation: posterFloat 7s ease-in-out infinite;
}
.hero .stub {
  animation: ticketBreathe 5s ease-in-out infinite;
}
.cards article {
  transition:
    transform 0.35s cubic-bezier(0.2, 0.75, 0.25, 1),
    filter 0.35s ease;
}
.cards article:hover {
  transform: translateY(-9px) rotate(-0.35deg);
  filter: drop-shadow(0 12px 12px rgba(45, 37, 40, 0.13));
}
.cards article:nth-child(2):hover {
  transform: translateY(-9px) rotate(0.35deg);
}
.button {
  position: relative;
  overflow: hidden;
}
.button:after {
  content: "";
  position: absolute;
  top: -55%;
  bottom: -55%;
  width: 34px;
  left: -60px;
  transform: rotate(20deg);
  background: rgba(255, 255, 255, 0.32);
  transition: left 0.55s ease;
}
.button:hover:after {
  left: calc(100% + 25px);
}
.cta:before {
  animation: ticketLine 17s linear infinite;
}
.faq details[open] summary b {
  transform: rotate(45deg);
  display: inline-block;
  transition: transform 0.25s ease;
}
/* Ensure a visible toggle icon for summary (fallback to pseudo-element) */
.faq summary {
  position: relative;
}
.faq summary b {
  display: none;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25px;
  color: var(--ink);
  transition: transform 0.25s ease, color 0.2s ease;
}
.faq details[open] summary::after {
  content: "−";
}
@keyframes posterFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}
@keyframes ticketBreathe {
  0%,
  100% {
    scale: 1;
  }
  50% {
    scale: 1.018;
  }
}
@keyframes ticketLine {
  from {
    translate: 0 0;
  }
  to {
    translate: -18% 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero .poster,
  .hero .stub,
  .cta:before {
    animation: none !important;
  }
  .cards article {
    transition: none;
  }
}

/* Seamless CTA marquee */
.cta:before {
  content: "MTICKET OI � LIVE MUSIC � MTICKET OI � LIVE MUSIC � MTICKET OI � LIVE MUSIC � MTICKET OI � LIVE MUSIC";
  width: max-content;
  right: auto;
  white-space: nowrap;
  animation: ticketLine 22s linear infinite;
}
@keyframes ticketLine {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 760px) {
  .cta:before {
    animation-duration: 17s;
  }
}

/* Real continuous marquee */
.cta:before {
  display: none;
}
.marquee {
  position: absolute;
  left: 0;
  right: 0;
  top: 16px;
  overflow: hidden;
  height: 18px;
  pointer-events: none;
}
.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marqueeMove 64s linear infinite;
}
.marquee-track span {
  display: block;
  font:
    500 10px/18px "DM Mono",
    monospace;
  letter-spacing: 2px;
  color: #e5c389;
  padding-right: 2px;
}
@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 760px) {
  .marquee {
    top: 13px;
  }
  .marquee-track {
    animation-duration: 48s;
  }
  .marquee-track span {
    font-size: 8px;
    letter-spacing: 1.4px;
  }
}

/* Keep each marquee segment wider than desktop viewports */
.marquee-track span {
  min-width: 1500px;
}
@media (max-width: 1600px) {
  .marquee-track span {
    min-width: 110vw;
  }
}
@media (max-width: 760px) {
  .marquee-track span {
    min-width: 130vw;
  }
}

/* Natural width prevents empty mobile marquee space */
.marquee-track span {
  min-width: auto !important;
}
