@font-face {
  font-family: 'Roboto';
  src: url('assets/fonts/Roboto-Variable.woff2?v=66e3a7dafb09') format('woff2');
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('assets/fonts/Roboto-Italic-Variable.woff2?v=2dc56cdfec77') format('woff2');
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: 'SdForTimBurton';
  src: url('assets/fonts/SdForTimBurton.woff2?v=7ae09d7fd132') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Parchment';
  src: url('assets/fonts/Parchment.woff2?v=896f25ee8d15') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --font-sans: 'Roboto', Arial, sans-serif;
  --font-display: 'SdForTimBurton', cursive;
  --font-parchment: 'Parchment', cursive;
  --font-color: #fff;
  --background-color: #000;
  --scrollbar-track: #25070c;
  --scrollbar-thumb: #9b283e;
  --scrollbar-thumb-light: #df5a70;
}

/* Firefox uses the standard properties; Chromium, Edge and Safari use the rules below. */
html {
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  scrollbar-width: thin;
}

html::-webkit-scrollbar {
  width: 17px;
  height: 17px;
}

html::-webkit-scrollbar-track {
  background: linear-gradient(90deg, #160305, var(--scrollbar-track) 50%, #160305);
}

html::-webkit-scrollbar-thumb {
  min-height: 52px;
  border: 4px solid var(--scrollbar-track);
  border-radius: 999px;
  background: linear-gradient(90deg, #76192b, var(--scrollbar-thumb-light) 52%, #811b2e);
  box-shadow: inset 0 0 0 1px rgb(255 223 228 / 28%), 0 0 10px rgb(163 31 61 / 42%);
}

html::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #a3263c, #ff8195 52%, #ac2941);
}

html::-webkit-scrollbar-thumb:active {
  background: #ff6e87;
}

html::-webkit-scrollbar-corner {
  background: var(--scrollbar-track);
}

body {
  min-width: 320px;
  font-family: var(--font-sans);
  background: var(--background-color);
}

.language-switcher {
  position: fixed;
  z-index: 10000;
  top: max(18px, env(safe-area-inset-top, 0px));
  right: max(22px, env(safe-area-inset-right, 0px));
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border: 1px solid rgb(255 238 226 / 32%);
  border-radius: 999px;
  background: rgb(14 4 4 / 72%);
  box-shadow: 0 4px 16px rgb(0 0 0 / 30%);
  color: #f3e9df;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .05em;
  backdrop-filter: blur(7px);
}

.language-option {
  color: inherit;
  opacity: .55;
  text-decoration: none;
  transition: opacity 140ms ease, color 140ms ease;
}

.language-option:hover,
.language-option:focus-visible {
  color: #e8a34d;
  opacity: 1;
}

html[lang='en'] .language-option-en,
html[lang='ka'] .language-option-ge {
  color: #e8a34d;
  opacity: 1;
}

.language-divider {
  color: rgb(243 233 223 / 45%);
}

/* One continuous backdrop across the header and the opening of site-main. */
.site-page {
  position: relative;
  isolation: isolate;
  background-image: radial-gradient(
    ellipse at 50% 36%,
    #3c110c 0%,
    #290c08 26%,
    #160604 49%,
    #070201 69%,
    transparent 86%
  );
  background-position: center top;
  background-size: 100% clamp(850px, 75vw, 1300px);
  background-repeat: no-repeat;
}

/* Soft screen reflections: animate only the light layer, not the page content. */
.site-page::before {
  content: '';
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(850px, 75vw, 1300px);
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 34%,
    rgb(137 43 29 / 36%) 0%,
    rgb(91 26 18 / 23%) 30%,
    transparent 73%);
  opacity: 0.5;
  animation: cinema-ambient-light 9s ease-in-out infinite;
}

@keyframes cinema-ambient-light {
  0%, 100% { opacity: 0.42; }
  18% { opacity: 0.68; }
  33% { opacity: 0.48; }
  48% { opacity: 0.76; }
  62% { opacity: 0.54; }
  79% { opacity: 0.7; }
  91% { opacity: 0.46; }
}

@media (prefers-reduced-motion: reduce) {
  .site-page::before {
    animation: none;
  }
}

/* Photoshop layout reference. Hidden by default; toggle it with the C key. */
.corrector {
  display: none;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: 100%;
  pointer-events: none;
  opacity: 0.3;
  transform: translateX(-50%);
  transition: opacity 120ms linear, visibility 120ms linear;
  background: url(corrector.png)
}

.corrector-visible .corrector {
  visibility: visible;
  opacity: .45;
}

.corrector__image {
  width: 100%;
  max-width: none;
}

.container {
  width: 1170px;
  margin: 0 auto;
}

header ul { 
  display: flex;
  align-items: center;
  gap: 33px;
} 
  
header ul li {   
  display: flex;
  align-items: center;
  font-size: 25px;
  color: var(--font-color);
}

header .main-nav {
  margin-top: 22px;
}

header ul li .nav-link {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

header ul li.nav-item.button { 
  color: #fff;
  border-radius: 35px;
  background: #c8452a;
  padding: 13px 20px;
}

.header-ticket-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 225, 201, .4);
  border-radius: 999px;
  padding: 11px 24px;
  color: #fff7f1;
  background: linear-gradient(135deg, #e45a3c 0%, #b82929 100%);
  box-shadow: 0 4px 0 #8b2627, 0 8px 18px rgba(108, 17, 22, .22);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 1px 1px rgba(82, 10, 14, .45);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.header-ticket-button::before {
  position: absolute;
  z-index: -1;
  top: -55%;
  left: -55%;
  width: 45%;
  height: 210%;
  content: '';
  transform: translateX(-170%) rotate(18deg);
  background: rgba(255, 255, 255, .42);
  transition: transform 420ms ease;
}

.header-ticket-button:hover {
  filter: brightness(1.04);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #8b2627, 0 12px 22px rgba(108, 17, 22, .3);
}

.header-ticket-button:hover::before {
  transform: translateX(570%) rotate(18deg);
}

.header-ticket-button:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 #8b2627, 0 3px 8px rgba(108, 17, 22, .24);
  transition-duration: 70ms;
}

.header-ticket-button:focus-visible {
  outline: 3px solid #ffd267;
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .header-ticket-button,
  .header-ticket-button::before,
  .hero-ticket-button,
  .hero-ticket-button::before {
    transition: none;
  }
}

.hero-section {
  position: relative;
}

.hero-inner {
  position: relative;
  z-index: -1;
  height: 420px;
}

.hero-video {
  --hero-video-crop-top: 150px;
  position: absolute;
  z-index: 0;
  inset: 0;
  top: calc(-1 * var(--hero-video-crop-top));
  pointer-events: none;
  
}

.hero-video video {
  display: block;
  width: 100%;
  object-fit: contain;
  -webkit-mask-image:
    linear-gradient(to right, transparent, #000 12%, #000 88%, transparent),
    linear-gradient(to bottom,
      transparent var(--hero-video-crop-top),
      #000 calc(var(--hero-video-crop-top) + 70px),
      #000 85%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent, #000 12%, #000 88%, transparent),
    linear-gradient(to bottom,
      transparent var(--hero-video-crop-top),
      #000 calc(var(--hero-video-crop-top) + 70px),
      #000 85%, transparent 100%);
  mask-composite: intersect;
}

.hero-text-wrapper {
  width: 420px;
  margin: 0 auto;
  text-align: center;
}

.hero-date {
   display: flex;
   justify-content: space-between;
   align-items: center;
   font-family: var(--font-parchment);
   color: var(--font-color);
   font-size: 123px;
   line-height: 1;
}

.event-date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.hero-title {
  font-family: var(--font-display);
  color: var(--font-color);
}

h1 {
  letter-spacing: -5px;
 
}

h1.hero-title .hero-title-first-word {
  display: block;
  width: 420px;
  height: 190px;
  margin-bottom: -70px;
  overflow: visible;
  line-height: 0.85;
}

h1.hero-title .hero-title-first-word text {
  fill: currentColor;
  font-family: var(--font-display);
  font-size: 117px;
  font-weight: 400;
}

h1.hero-title .hero-title-second-word {
  display: block;
  font-size: 106px;
  line-height: 1;
}

h1.hero-title .hero-title-third-word {
  display: block;
  width: 420px;
  height: 110px;
  margin-top: -45px;
  overflow: visible;
}

h1.hero-title .hero-title-third-word text {
  fill: currentColor;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
}

/* Keep the original three title trajectories, but use measured Georgian type
   inside them so the complete words fit their fixed SVG paths. */
html[lang='ka'] h1.hero-title .hero-title-first-word text,
html[lang='ka'] h1.hero-title .hero-title-third-word text {
  font-family: Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

html[lang='ka'] h1.hero-title .hero-title-first-word text { font-size: 48px; }

html[lang='ka'] h1.hero-title .hero-title-second-word {
  font-family: Arial, sans-serif;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

html[lang='ka'] h1.hero-title .hero-title-third-word text { font-size: 32px; }

.hero-ticket-button {
  position: relative;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  padding: 16px 28px;
  border: 1px solid rgba(255, 225, 201, .4);
  border-radius: 35px;
  color: #fff;
  background: linear-gradient(135deg, #e45a3c 0%, #b82929 100%);
  box-shadow: 0 5px 0 #8b2627, 0 10px 20px rgba(108, 17, 22, .25);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 41px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, .7);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
  margin-top: 30px;
}

.hero-ticket-button::before {
  position: absolute;
  z-index: -1;
  top: -55%;
  left: -55%;
  width: 45%;
  height: 210%;
  content: '';
  transform: translateX(-170%) rotate(18deg);
  background: rgba(255, 255, 255, .42);
  transition: transform 420ms ease;
}

.hero-ticket-button:hover {
  filter: brightness(1.04);
  transform: translateY(-2px);
  box-shadow: 0 7px 0 #8b2627, 0 14px 24px rgba(108, 17, 22, .32);
}

.hero-ticket-button:hover::before {
  transform: translateX(570%) rotate(18deg);
}

.hero-ticket-button:active {
  transform: translateY(4px);
  box-shadow: 0 1px 0 #8b2627, 0 4px 9px rgba(108, 17, 22, .24);
  transition-duration: 70ms;
}

.hero-ticket-button:focus-visible {
  outline: 3px solid #ffd267;
  outline-offset: 4px;
}

.event-highlights {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.event-highlight:not(:last-child)::after {
  margin: 0 6px;
  content: '·';
}


.information-section {
  text-align: center;
  margin-top: 65px;
}

.information-section > .information-inner {
  max-width: 80%;
  margin: 0 auto;
}

.information-section h2.information-title {
  color: var(--font-color);
  text-transform: uppercase;
  font-size: 42px;
  font-weight: bold;
  line-height: 1;
}

.information-section h2.information-description {
  color: #b9a89f;
  text-transform: uppercase;
  font-size: 42px;
  font-weight: bold;
  line-height: 1.15;
}

.wide-list 
{
  max-width: 1750px;
  padding: 0px 25px;
  margin: 0px auto;
}


.wide-list ul.event-highlights {

  font-size: 42px;
  font-weight: bold;
  line-height: 1.15;
  display: flex;
  justify-content: center;
  margin-top: 95px;
  padding: 0;
  list-style: none;
  /*color: #f3e9df;*/
  letter-spacing: -2.2px;
  color: var(--font-color);
}

.media-inner {
  position: relative;
}

.media-social-list {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: clamp(16px, 2.5vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  transform: translateY(-50%);
}

.media-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 160ms ease, filter 160ms ease;
}

.media-social-link:hover {
  filter: brightness(1.18);
  transform: translateY(-2px);
}

.media-social-link:focus-visible {
  outline: 3px solid #ffd267;
  outline-offset: 4px;
}

.media-social-icon {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.event-media {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  height: min(56.25vw, 1000px);
  margin: 0;
  background: #000;
}

.event-media::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: '';
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #000 0%,
    rgba(0, 0, 0, .72) 5%,
    transparent 14%,
    transparent 86%,
    rgba(0, 0, 0, .72) 95%,
    #000 100%
  );
}

.event-media video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 1000px;
  object-fit: cover;
}

.media-marquee {
  position: absolute;
  z-index: 2;
  left: 0;
  width: 100%;
  overflow: hidden;
  color: #fff;
  background: #000;
  mix-blend-mode: multiply;
  pointer-events: none;
  font-size: 37px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
}

.media-marquee-top {
  top: 0;
}

.media-marquee-bottom {
  bottom: 0;
}

.media-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.media-marquee-top .media-marquee-track {
  animation: media-marquee-right 24s linear infinite;
}

.media-marquee-bottom .media-marquee-track {
  animation: media-marquee-left 24s linear infinite;
}

.marquee-text {
  flex: none;
  padding: 5px 30px;
}

@keyframes media-marquee-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes media-marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .media-marquee-track {
    animation: none;
  }
}


.media-section {
  margin-top: 100px;
}

.schedule-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #000;
}

.schedule-section::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: '';
  pointer-events: none;
  background: linear-gradient(
    180deg,
    #000 0%,
    rgba(0, 0, 0, .72) 10%,
    transparent 25%,
    transparent 75%,
    rgba(0, 0, 0, .72) 90%,
    #000 100%
  );
}

.schedule-inner {
  position: relative;
  z-index: 2;
}

.schedule-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.schedule-event-brand {
  text-align: right;
}

.schedule-eyes {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.schedule-eyes-video,
.schedule-eyes-still {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.schedule-eyes-still {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.schedule-eyes-last,
.schedule-eyes[data-state="playing"] .schedule-eyes-first,
.schedule-eyes[data-state="done"] .schedule-eyes-first {
  visibility: hidden;
}

.schedule-eyes[data-state="done"] .schedule-eyes-last {
  visibility: visible;
}

.schedule-section {
  margin-top: 60px;
  min-height: 850px;
}

.schedule-section .schedule-inner {
  padding: 130px 95px 0px;
}

.schedule-section .schedule-event-meta {
  margin-left: 95px;
}


.schedule-section .schedule-date {
  font-size: 45px;
  color: #f6efe9;
  font-weight: bold;
  line-height: 0.9;
}

.schedule-section .schedule-event-name{
  font-size: 72px;
  color: #f6efe9;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 0.7;
}

.schedule-section .schedule-event-organizer {
  color: #a5928b;
  font-size: 30px;
  text-transform: uppercase;
  margin-top: -10px;
}
.schedule-section .schedule-venue {
  color: #b9a89f;
  font-size: 37px;
}

.schedule-section .section-eyebrow {
  text-align: center;
  color: #c99a52;
  font-size: 37px;
  line-height: 1;
  text-transform: uppercase;
  margin-top: 20px;
  letter-spacing: -2px;
}

.schedule-section h2.schedule-title {
  text-align: center;
  font-size: 72px;
  color: #f6efe9;
  line-height: 0.6;
  margin: 0px;
  padding: 0px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: -2px;
}

.schedule-section .schedule-list{
  margin-top: 100px;
  font-size: 25px;
}

.schedule-section .schedule-list span{
  color: #f3e9df;
  font-weight: 200;
}

.schedule-section .schedule-list time{
  color: #c99a52;
}

.tickets-section {

  padding: 50px 0px 0px;
}

.tickets-section .section-eyebrow {
  text-align: center;
  color: #c99a52;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  margin-top: 20px;
  letter-spacing: -2px;
}

.tickets-section h2.section-title {
  text-align: center;
  font-size: 48px;
  color: #f6efe9;
  line-height: 0.6;
  margin: 0px;
  padding: 0px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: -2px;
}

.tickets-section .ticket-artwork {
  margin-left: -20px;
  margin-top: 20px;
}


.ticket-card .ticket-artwork{
  position: relative;

}

/* The compact ticket is only used by the responsive layout. */
.ticket-card-image {
  display: none;
}

.ticket-card .ticket-details {
  position: absolute;
  z-index: 1;
  top: 270px;
  left: 50.5%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  width: 230px;
  color: #f3e9df;
  font-size: 12px;
  transform: translate(-50%, -50%);
}

.ticket-card .ticket-details ul {
  grid-column: 1 / -1;
  padding: 0;
}

.ticket-card .ticket-description {
  grid-column: 1;
  font-size: 10px;
  
}

.ticket-card .ticket-date {
  grid-column: 2;
  white-space: nowrap;
  display: block;
  font-size: 21px;
  letter-spacing: -1px;
  transform: scaleY(1.5);
  transform-origin: bottom;
  line-height: 1;
}

.ticket-card .ticket-details ul li {
  line-height: 1;

}

.ticket-card {
  position: relative;
}

.ticket-card .ticket-details span {
  color: #c99a52;
}

.ticket-card .ticket-details ul li::before {
  margin-right: 6px;
  content: '·';
}


.ticket-stage {
  position: relative;
  isolation: isolate;
}

.ticket-stage::before {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  content: '';
  pointer-events: none;
  transform: translateX(-50%);
  background-image: url('assets/images/ticket-stage-v2.webp?v=f8010188a038');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center -170px;
}

.ticket-stage > * {
  position: relative;
  z-index: 1;
}

.purchase  {
  bottom: 20%;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  width: max-content;
  min-width: 200px;
  position: absolute;
  transform: translateX(-50%);
}

.purchase p {
  flex: none;
  margin: 0;
  padding: 15px 20px;
  border-radius: 22px;
  color: #f6efe9;
  background: #1d1a1a;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.purchase a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  text-transform: uppercase;
  padding: 15px 28px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #de335f;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 140ms ease;
}

.purchase a::before {
  position: absolute;
  z-index: 0;
  top: -60%;
  left: -50%;
  width: 38%;
  height: 220%;
  content: '';
  transform: translateX(-185%) rotate(20deg);
  background: linear-gradient(90deg, transparent, rgba(255, 193, 218, .45) 35%, rgba(255, 255, 255, .82) 50%, rgba(255, 193, 218, .45) 65%, transparent);
  transition: transform 520ms cubic-bezier(.2, .7, .2, 1);
}

.purchase a:hover,
.purchase a:focus-visible {
  filter: brightness(1.04);
}

.purchase a:hover::before,
.purchase a:focus-visible::before {
  transform: translateX(575%) rotate(20deg);
}

.purchase a:active {
  filter: brightness(.94);
}

.purchase a:focus-visible {
  outline: none;
}

.purchase a .buy-button-label,
.purchase a .cart-icon {
  position: relative;
  z-index: 1;
}

.cart-icon {
  display: block;
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.side-learn-more {
  position: fixed;
  z-index: 20;
  top: 68%;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 58px 16px 44px;
  border-radius: 30px 0 0 30px;
  color: #fff5f9;
  background: #df7097;
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 2px 3px 0 rgb(91 31 53 / 45%), 3px 5px 6px rgb(0 0 0 / 35%);
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(calc(100% + 24px), -50%, 0) scale(0.9, 1.06);
  transform-origin: right center;
  backface-visibility: hidden;
  will-change: transform;
  transition: background-color 180ms ease, filter 180ms ease;
}

.side-learn-more.is-visible {
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, -50%, 0) scale(1);
}

.side-learn-more:hover,
.side-learn-more:focus-visible {
  color: #fff;
  background: #e67aa0;
  filter: brightness(1.03);
}

.side-learn-more.is-visible:active {
  transform: translate3d(0, -50%, 0) scaleX(0.98);
}

.side-learn-more:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -8px;
}

@media (prefers-reduced-motion: reduce) {
  .side-learn-more,
  .side-learn-more.is-visible {
    transition: none;
  }
}




.merch-section {
  position: relative;
  isolation: isolate;
  background-color: #000;
  background-image: url('assets/images/merch-stage-v2.webp?v=ac6cc98d2a4a');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center -40px;
  padding-top: 155px;
  padding-bottom: 100px;
}

.merch-section::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  height: min(35vw, 100px);
  content: '';
  pointer-events: none;
  background: linear-gradient(to bottom, #000 0%, rgb(0 0 0 / 82%) 27%, transparent 100%);
}

.merch-inner {
  position: relative;
  z-index: 1;
}

.merch-section .section-eyebrow {
  text-align: center;
  color: #c99a52;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  margin-top: 20px;
  letter-spacing: -2px;
  margin: 10px;
}

.merch-section h2.section-title {
  text-align: center;
  font-size: 48px;
  color: #f6efe9;
  line-height: 1;
  margin: 0px;
  padding: 0px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: -2px;
  margin: 11px;
}

.merch-section .section-description {
  color: var(--font-color);
  font-size: 13px;
  letter-spacing: -0.5px;
  margin: 0px auto;
  max-width: 600px;
  line-height: 1.15;
  text-align: center;
}

.merch-contents {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0px;
  font-size: 12px;
  width:80%;
  margin: 10px auto 50px;
}

.merch-contents-left,
.merch-contents-right {
  flex: 1 1 0;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: center;
}

.merch-list {
  padding: 30px 10px 0px;
}

/* Same purchase component as the ticket; merch places it in normal card flow. */
.merch-card .purchase {
  position: static;
  width: 100%;
  min-width: 0;
  margin-top: 18px;
  transform: none;
  gap: 12px;
}

.merch-name {
  --metal-light: #dfdee1;
  --metal-dark: #bdbbbe;
  --metal-highlight: #ffffff;
  --metal-edge: #85838a;

  letter-spacing: 2px;
  transform: scaleY(0.9);

  display: inline-block;
  position: relative;
  isolation: isolate;
  color: var(--metal-light);
  background-image:
    linear-gradient(180deg, transparent 35%, rgb(0 0 0 / 18%) 100%),
    linear-gradient(
      110deg,
      transparent 0%,
      transparent 38%,
      rgb(255 255 255 / 32%) 48%,
      transparent 58%,
      transparent 100%
    ),
    radial-gradient(ellipse at 50% 40%, rgb(255 255 255 / 7%), transparent 65%),
    linear-gradient(
      180deg,
      var(--metal-light) 0%,
      var(--metal-highlight) 5%,
      var(--metal-light) 9%,
      var(--metal-dark) 32%,
      var(--metal-light) 40%,
      var(--metal-highlight) 43%,
      var(--metal-dark) 48%,
      var(--metal-light) 61%,
      var(--metal-highlight) 64%,
      var(--metal-light) 68%,
      var(--metal-dark) 86%,
      var(--metal-dark) 100%
    );
  background-position: 0 0, 135% 0, 0 0, 0 0;
  background-size: 100% 100%, 250% 100%, 100% 100%, 100% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.2px var(--metal-light);
  font-size: 50px;
  line-height: 1;
  font-weight: bold;
  text-shadow: none;
  filter: drop-shadow(0 -0.3px 0 var(--metal-light))
    drop-shadow(0 1px 0 var(--metal-edge));
  transition: background-position 850ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.merch-name-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* Keep the material's proportions so its scratches do not flatten into bands. */
  background: url("assets/images/merch-metal-texture.jpg?v=9d32b9bbcf07") 45% 42% / 180px 180px repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0;
  opacity: 0.65;
  mix-blend-mode: soft-light;
  /* Neutralize the pale source before adding contrast: no white wash over the colors. */
  filter: grayscale(1) brightness(0.62) contrast(4);
}

/* Texture breaks up the rim into fine, irregular metallic flecks. */
.merch-name-texture::before {
  content: attr(data-text);
  position: absolute;
  inset: -2px;
  padding: 2px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.8px var(--metal-highlight);
  mask-image: url("assets/images/merch-metal-texture.jpg?v=9d32b9bbcf07");
  mask-mode: luminance;
  mask-size: 90px 90px;
  opacity: 0.65;
}

/* Georgian words are longer and the display face only supplies Latin glyphs.
   Use the local sans fallback at a measured size while preserving the material. */
html[lang='ka'] .wide-list ul.event-highlights {
  font-family: var(--font-sans);
  font-size: 28px;
  letter-spacing: 0;
}

html[lang='ka'] .merch-name {
  font-family: var(--font-sans);
  font-size: 34px;
  line-height: 1.18;
  letter-spacing: 0;
  transform: none;
}

html[lang='ka'] .cosplay-register-button,
html[lang='ka'] .collaboration-contact-button {
  font-family: var(--font-sans);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: 0;
}

.merch-card {
  padding: 0px;
  --merch-glow: 210 215 235;
  position: relative;
  isolation: isolate;
  cursor: pointer;
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.merch-card-mystic { --merch-glow: 170 112 235; }
.merch-card-gold { --merch-glow: 242 177 88; }

.merch-card::before,
.merch-card::after {
  content: '';
  position: absolute;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 240ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* A fan of stage lights opens behind the selected box. */
.merch-card::before {
  inset: 8% -18% 12%;
  background:
    radial-gradient(ellipse at 50% 78%, rgb(var(--merch-glow) / 0.42), transparent 62%),
    repeating-conic-gradient(from -48deg at 50% 100%,
      transparent 0deg 9deg, rgb(var(--merch-glow) / 0.24) 10deg 13deg,
      transparent 15deg 24deg);
  mask-image: radial-gradient(ellipse at 50% 68%, #000 12%, transparent 72%);
  transform: translateY(20px) scaleX(0.55);
}

/* Narrow reflected light across the plinth. */
.merch-card::after {
  left: -8%;
  right: -8%;
  bottom: 18%;
  height: 30%;
  background: radial-gradient(ellipse at center,
    rgb(var(--merch-glow) / 0.7) 0%,
    rgb(var(--merch-glow) / 0.25) 18%, transparent 65%);
  transform: scale(0.55, 0.12);
}

.merch-card .merch-artwork-image {
  transition: filter 280ms ease;
}

.merch-card:focus-within {
  transform: translateY(-9px);
}

.merch-card:focus-within::before,
.merch-card:focus-within::after {
  opacity: 1;
}

.merch-card:focus-within::before { transform: translateY(0) scaleX(1); }
.merch-card:focus-within::after { transform: scale(1, 0.2); }

@media (hover: hover) {
  .merch-card:hover { transform: translateY(-9px); }
  .merch-card:hover::before { opacity: 1; transform: translateY(0) scaleX(1); }
  .merch-card:hover::after { opacity: 1; transform: scale(1, 0.2); }
  .merch-card:hover .merch-artwork-image {
    filter: drop-shadow(0 0 16px rgb(var(--merch-glow) / 0.28));
  }
  .merch-card:hover .purchase a::before {
    transform: translateX(575%) rotate(20deg);
  }
}

.merch-card:active {
  transform: translateY(-3px) scale(0.985);
}

.merch-card:active .purchase a {
  filter: brightness(0.94);
}

@media (prefers-reduced-motion: reduce) {
  .merch-card,
  .merch-card::before,
  .merch-card::after,
  .merch-card .merch-artwork-image {
    transition: none;
  }
  .merch-card:hover,
  .merch-card:focus-within,
  .merch-card:active {
    transform: none;
  }
}

.merch-card .purchase {
  margin-top: 50px;
}

.merch-card-silver .merch-name {
  --metal-light: #dfdee1;
  --metal-dark: #bdbbbe;
  --metal-highlight: #ecebee;
  --metal-edge: #85838a;
}

.merch-card-mystic {
  padding-top: 40px;
}

.merch-card-mystic .merch-name {
  --metal-light: #8e6db2;
  --metal-dark: #7e529f;
  --metal-highlight: #a285be;
  --metal-edge: #503168;
}

.merch-card-gold .merch-name {
  --metal-light: #e7ad63;
  --metal-dark: #aa7941;
  --metal-highlight: #efc087;
  --metal-edge: #704823;
}

.merch-card:hover .merch-name,
.merch-card:focus-within .merch-name {
  background-position: 0 0, -35% 0, 0 0, 0 0;
}

@media (prefers-reduced-motion: reduce) {
  .merch-name {
    transition: none;
  }
}

.cosplay-section {
  padding-top: 75px;
}

.cosplay-section .section-eyebrow {
  text-align: center;
  color: #c99a52;
  font-size: 24px;
  line-height: 1;
  margin-top: 20px;
  letter-spacing: -2px;
  margin: 10px;
}

.cosplay-section h2.section-title {
  text-align: center;
  font-size: 48px;
  color: #f6efe9;
  line-height: 1;
  margin: 0px;
  padding: 0px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: -2px;
  margin: 11px;
}

.cosplay-section .section-description {
  color: var(--font-color);
  font-size: 16px;
  letter-spacing: -0.5px;
  margin: 0px auto;
  max-width: 600px;
  line-height: 1.2;
  text-align: center;
  font-style: italic;
}

.cosplay-section .cosplay-steps {
  text-align: center;
  padding-top: 15px;
}

.cosplay-section .cosplay-steps img {
  display: inline;
}

.cosplay-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 22px;
  margin-top: 44px;
  font-family: var(--font-sans);
  font-size: 24px;
  line-height: 1.3;
  color: var(--font-color);
}

.cosplay-column-title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: #c99a52;
  text-transform: uppercase;
}

.cosplay-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cosplay-list-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 6px;
}

.cosplay-item-text {
  margin: 0;
  font-size: 24px;
  color: var(--font-color);
  line-height: 1.25;
  letter-spacing: -1px;
}

.cosplay-item-text strong {
  color: #c99a52;
  font-weight: 400;
}

.cosplay-item-icon {
  display: block;
  width: 36px;
  height: 44px;
  margin-top: 5px;
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
}

.cosplay-item-icon.icon-register { background-image: url('assets/images/icon-user-plus.png?v=f5c442161a45'); }
.cosplay-item-icon.icon-performance { background-image: url('assets/images/icon-masks-theater.png?v=ab57f999c704'); }
.cosplay-item-icon.icon-rehearsal { background-image: url('assets/images/icon-calendar-check.png?v=f229fa85bad5'); }
.cosplay-item-icon.icon-stage { background-image: url('assets/images/icon-presentation.png?v=4355d5979571'); }
.cosplay-item-icon.icon-ticket { background-image: url('assets/images/icon-ticket.png?v=4fdbf5cac02f'); }
.cosplay-item-icon.icon-crown { background-image: url('assets/images/icon-crown.png?v=2b8931445e19'); }
.cosplay-item-icon.icon-camera { background-image: url('assets/images/icon-camera.png?v=d208a65692b7'); }

.cosplay-registration {
  position: relative;
  width: min(100%, 300px);
  margin: 28px auto 0;
  padding-top: 80px;
}

.cosplay-registration-artwork {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  width: 230px;
  max-width: 90%;
  transform: translateX(-50%);
  pointer-events: none;
}

.cosplay-registration-artwork img {
  display: block;
  width: 100%;
  height: auto;
}

.cosplay-register-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 98px;
  padding: 24px 20px 16px;
  border-radius: 40px;
  background: #c34830;
  color: var(--font-color);
  font-family: var(--font-display);
  font-size: 50px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: 2px 3px 2px rgb(0 0 0 / 55%);
  transition: background-color 180ms ease;
}

.cosplay-register-button:hover {
  background: #d45338;
  color: var(--font-color);
}

.cosplay-register-button:active { background: #ad3c26; }
.cosplay-register-button:focus-visible {
  outline: 2px solid #c99a52;
  outline-offset: 4px;
}



.collaborations-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 90px;
}

.collaborations-inner {
  position: relative;
  z-index: 1;
}

.collaboration-mascot {
  position: absolute;
  z-index: 0;
  bottom: 270px;
  display: block;
  width: clamp(240px, 23vw, 380px);
  height: auto;
  pointer-events: none;
  user-select: none;
  transition: opacity 340ms ease, transform 620ms cubic-bezier(.16, 1, .3, 1);
}

.collaboration-mascot.is-mascot-hidden {
  opacity: 0;
}

.collaboration-mascot-left.is-mascot-hidden {
  transform: translateX(-42%);
}

.collaboration-mascot-right.is-mascot-hidden {
  transform: translateX(42%);
}

.collaboration-mascot-left {
  left: 0;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 33%, #000 100%),
    linear-gradient(to bottom, #000 0%, #000 67%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, #000 33%, #000 100%),
    linear-gradient(to bottom, #000 0%, #000 67%, transparent 100%);
  mask-composite: intersect;
}

.collaboration-mascot-right {
  right: 0;
  -webkit-mask-image:
    linear-gradient(to left, transparent 0%, #000 33%, #000 100%),
    linear-gradient(to bottom, #000 0%, #000 67%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to left, transparent 0%, #000 33%, #000 100%),
    linear-gradient(to bottom, #000 0%, #000 67%, transparent 100%);
  mask-composite: intersect;
}

.collaborations-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 35px;
  margin-top: 117px;
  color: var(--font-color);
  font-family: var(--font-sans);
  font-size: 24px;
  line-height: 1.3;
}

.collaborations-creators {
  display: grid;
  gap: 17px;
}

.collaboration-title {
  margin: 0 0 16px;
  color: #c99a52;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

.collaboration-description {
  margin: 0 0 0 58px;
  color: var(--font-color);
  font-size: 24px;
  line-height: 1.3;
}

.collaboration-description strong {
  color: #c99a52;
  font-weight: 400;
}

.collaboration-contact-button {
  
  width: 270px;
  margin: 54px 0px 0px 109px;
  padding: 22px 25px;
  border: 0;
  border-radius: 40px;
  background: #c34830;
  color: var(--font-color);
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: 2px 3px 2px rgb(0 0 0 / 55%);
  transition: background-color 180ms ease;
}

.collaboration-contact-button:hover {
  background: #d45338;
  color: var(--font-color);
}

.collaboration-contact-button:active {
  background: #ad3c26;
}

.collaboration-contact-button:focus-visible {
  outline: 2px solid #c99a52;
  outline-offset: 4px;
}

.collaborations-section .section-eyebrow {
  text-align: center;
  color: #c99a52;
  font-size: 24px;
  line-height: 1;
  margin-top: 20px;
  letter-spacing: -2px;
  margin: 10px;
}

.collaborations-section h2.section-title {
  text-align: center;
  font-size: 48px;
  color: #f6efe9;
  line-height: 1;
  margin: 0px;
  padding: 0px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: -2px;
  margin: 11px;
}

.collaborations-section .section-description {
  color: var(--font-color);
  font-size: 16px;
  letter-spacing: -0.5px;
  margin: 0px auto;
  max-width: 600px;
  line-height: 1.2;
  text-align: center;
  font-style: italic;
}


.location-map {
  
  height: 420px;
  margin: 30px auto 24px;
  overflow: hidden;
  border-radius: 8px;
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  overflow: hidden;
  background: #000;
}

footer {
  overflow: visible;
}

.footer-inner {
  position: relative;
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100vw - 1170px) / 2));
  box-sizing: border-box;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.footer-social-list {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin: 0;
  padding: 20px 0px 0 0;
  list-style: none;
}

.footer-social-link {
  display: grid;
  width: 104px;
  height: 104px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  transition: filter 180ms ease, transform 180ms ease;
}

a.footer-social-link {
  cursor: pointer;
}

.footer-social-link img {
  display: block;
  max-width: 98px;
  max-height: 98px;
  width: auto;
  height: auto;
}

.footer-social-link:hover,
a.footer-social-link:focus-visible {
  filter: brightness(1.22) drop-shadow(0 0 12px rgb(223 112 151 / 45%));
  transform: translateY(-4px);
}

button.footer-social-link:disabled {
  opacity: 1;
}

.footer-social-link:focus-visible {
  outline: 2px solid #c99a52;
  outline-offset: 8px;
}

.footer-mascot {
  display: block;
  margin-top: -120px;
  width: 265px;
  height: auto;
  pointer-events: none;
  user-select: none;
}

/* Compress, overshoot, then settle: the same playful motion as a snapping tongue. */
.footer-mascot.is-footer-hidden {
  opacity: 0;
  transform: translateY(115%) scale(.72, .5);
}

.footer-mascot.is-footer-entering {
  animation: footer-mascot-tongue-in 520ms cubic-bezier(.16, 1, .3, 1) both;
}

.footer-mascot.is-footer-leaving {
  animation: footer-mascot-tongue-out 300ms cubic-bezier(.55, 0, 1, .45) both;
}

@keyframes footer-mascot-tongue-in {
  0% { opacity: 0; transform: translateY(115%) scale(.72, .5); }
  52% { opacity: 1; transform: translateY(-8%) scale(1.1, .82); }
  75% { transform: translateY(2%) scale(.95, 1.06); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes footer-mascot-tongue-out {
  0% { opacity: 1; transform: translateY(0) scale(1); }
  32% { opacity: 1; transform: translateY(-5%) scale(1.06, .82); }
  100% { opacity: 0; transform: translateY(115%) scale(.72, .5); }
}

.footer-bottom {

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-credit {
  
  margin-top: 60px;
  color: var(--font-color);
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.collaborations-section .venue-address {
  color: var(--font-color);
  font-size: 24px;
  letter-spacing: -0.5px;
  margin: 0px auto;
  max-width: 600px;
  line-height: 1.2;
  text-align: center;
}

.collaborations-section .venue-address span{
  color: #c99a52;
} 

.location-section .section-heading {
  margin-top: 75px;
}

.location-section .location-note {
  font-size: 16px;
  text-align: center;
  color: var(--font-color);
  font-style: italic;
}

