:root {
  --black: #000;
  --ink: #121212;
  --white: #fff;
  --yellow: #fff100;

  --baki-red: #C93032;
  --baki-red-soft: #C93032;
  --skr-blue: #37506D;
  --skr-blue-soft: #37506D;
/*
  --baki-red: #a91e2f;
  --baki-red-soft: #b65b66;


  --skr-blue: #357993;
  --skr-blue-soft: #6599ad;
*/

  --footer: #121212;
  --body-font: "Avenir Next", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --cond-font: "Avenir Next Condensed", "Special Gothic Condensed One", Impact, sans-serif;
  --cond-weight: 700;
  --brand-font: "Bricolage Grotesque", var(--body-font);
  --page-max: 1440px;
  --content: 1150px;
  --narrow: 790px;
  --side: clamp(30px, 10vw, 145px);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--black);
}

body {
  color: var(--black);
  font-family: var(--body-font)!important;
}

body.is-loading {
  overflow: hidden;
}


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

br.pc{display: block;}
br.sp{display: none;}

img {
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

#page-loader {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

#page-loader::after {
  width: 40px;
  height: 2px;
  background: var(--white);
  content: "";
  transform-origin: left;
  animation: loader-bar 1.2s ease-in-out infinite alternate;
}

#page-loader.done {
  opacity: 0;
}

#page-loader.is-hidden {
  display: none;
}

@keyframes loader-bar {
  from {
    opacity: 0.4;
    transform: scaleX(0.1);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.site {
  width: 100%!important;
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.site.is-loaded {
  opacity: 1;
}

.section-inner {
  width: min(calc(100% - 60px), var(--content));
  margin-inline: auto;
}

.section-inner--narrow {
  width: min(calc(100% - 60px), var(--narrow));
}

.media-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-pos-hero-desktop {
  object-position: 48% 49%;
}

.media-pos-hero-mobile-left {
  object-position: 3% 49%;
}

.media-pos-hero-mobile-right {
  object-position: 97% 49%;
}

.media-pos-booth {
  object-position: center top;
}

.media-pos-artist {
  object-position: 50% 58%;
}

.registered-mark {
  font-size: 0.72em;
  vertical-align: super;
}

.hero {
  position: relative;
  background: var(--black);
}

.hero__desktop {
  aspect-ratio: 1440 / 722;
}

.hero__mobile {
  display: none;
}

.hero__brand {
  position: absolute;
  top: clamp(18px, 1.4vw, 28px);
  left: 50%;
  display: block;
  width: clamp(260px, 28.5vw, 410px);
  transform: translateX(-50%);
}

.hero__brand img {
  display: block;
  width: 100%;
}

.section-dark {
  position: relative;
  background: #101010 url("../img/booth-bg-texture.jpg") center top / cover;
  color: var(--yellow);
}

.section-dark::before {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  content: "";
}

.intro__inner {
  position: relative;
  z-index: 1;
  padding: clamp(50px, 5.6vw, 80px) 0 clamp(76px, 7vw, 100px);
}

.intro__heading {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
padding-bottom: 10px;
}

.intro__badge {
  width: 110px;
}

.intro h1 {
  margin: 0;
  max-width: 1042px;
  color: var(--yellow);
  font-family: var(--cond-font);
  font-size: clamp(48px, 4.6vw, 62.5px);
  font-weight: var(--cond-weight);
  line-height: 1.11;
text-transform: uppercase;
padding-bottom: 0;
}

.intro__copy {
  margin: 0;
  padding-top: 1px;
  color: var(--yellow);
  font-size: 17px;
  line-height: 1.65;
}

.intro__note {
  margin: 8px 0 0;
  color: var(--yellow);
  font-size: 11px;
  line-height: 1.9;
}

.booth-visual {
  aspect-ratio: 1100 / 619;
  width: 100%;
  margin: 48px 0 0;
  overflow: hidden;
}

.intro-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin: 74px auto 0;
}

.intro-social p,
.newsletter-band__label {
  margin: 0;
  font-family: var(--cond-font);
  font-size: 16px;
  font-weight: var(--cond-weight);
  line-height: 1;
  text-transform: uppercase;
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.social-icons a {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
}

.social-icons img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-icons--yellow a:last-child,
.social-icons--white a:last-child {
  width: 29px;
}

.intro-newsletter {
  display: grid;
  justify-items: center;
  gap: 24px;
  width: min(100%, 660px);
  margin: 56px auto 0;
  text-align: center;
}

.intro-newsletter p,
.newsletter-band p,
.section-copy,
.art-section__intro p,
.art-section__contact p,
.merch-hero p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
}

.merch-hero p {color: #fff;}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0 40px;
  border: 0;
  color: var(--black);
  font-family: var(--cond-font);
  font-size: 20px;
  font-weight: var(--cond-weight);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.button--yellow {
  width: min(100%, 660px);
  background: var(--yellow);
}

.button--white {
  width: min(100%, 660px);
  background: var(--white);
}

.button--black {
  width: min(100%, 660px);
  background: var(--black);
  color: var(--white);
}

.feature-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;
  margin-top: 92px;
}

.feature-link {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 255px);
  min-height: 300px;
  overflow: hidden;
  color: var(--white);
align-content: space-between;
}

.feature-link--skr {
  grid-template-columns: minmax(200px, 255px) 1fr;
}

.feature-link--baki {
  background: #9c1929;
}

.feature-link--skr {
  background: var(--skr-blue);
}

.feature-link__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 38px 36px;
  font-family: var(--cond-font);
  font-size: 15px;
  font-weight: var(--cond-weight);
  line-height: 1.35;
  text-align: center;
}

.feature-link__logo {
  display: block;
}

.feature-link__logo--baki {
  width: min(100%, 150px);
}

.feature-link__logo--skr {
  width: min(100%, 260px);
}

.feature-link__image {
  align-self: stretch;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-link__image--right {
  object-position: center top;
}

.feature-link__image--left {
  object-position: center top;
}

.art-section {
  padding: clamp(86px, 8vw, 116px) 0 0;
  background: var(--white);
}

.art-section__intro {
  text-align: center;
}

.art-section__eyebrow,
.art-section h2,
.art-section__subhead {
  font-family: var(--cond-font);
  font-weight: var(--cond-weight);
  text-transform: uppercase;
}

.art-section__eyebrow {
  color: #000;
  font-size: clamp(35px, 4.7vw, 67px)!important;
  line-height: 1.04;
padding: 0;
}

.art-section__subhead {
  color:#000;
  margin-top: 4px;
  font-size: clamp(16px, 1.8vw, 25px)!important;
  line-height: 1.7;
  text-transform: none;
}

.art-section h2 {
  color: #000;
  display: grid;
  gap: 0;
  margin: 16px 0 28px;
  font-size: clamp(82px, 11.8vw, 170px);
  line-height: 0.86;
}

.art-section h2 span:last-child {
  font-size: clamp(50px, 9vw, 130px);
}

.gallery {
  width: min(calc(100% - 90px), 1350px);
  margin: 88px auto 0;
}

.gallery__main {
  position: relative;
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
  background: #eee;
}

.gallery__main img {
  transition: opacity 0.28s ease;
}

.gallery__main.is-changing img {
  opacity: 0;
}

.gallery__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: none;
  width: clamp(44px, 4vw, 60px);
  height: clamp(44px, 4vw, 60px);
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.44);
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  transform: translateY(-50%);
}

.gallery__arrow:hover {
  background: rgba(0, 0, 0, 0.72);
}

.gallery__arrow--prev {
  left: clamp(16px, 2.5vw, 32px);
}

.gallery__arrow--next {
  right: clamp(16px, 2.5vw, 32px);
}

.gallery__thumbs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.gallery__thumb {
  position: relative;
  width: 110px;
  aspect-ratio: 110 / 73;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #ddd;
}

.gallery__thumb::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  content: "";
}

.gallery__thumb.is-active::after {
  opacity: 0;
}

.gallery__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-copy {
  width: min(calc(100% - 60px), 810px);
  margin: 36px auto 0;
}

.section-copy--center {
  text-align: center;
}

.artist-visual {
  aspect-ratio: 950 / 535;
  width: min(calc(100% - 90px), 950px);
  margin: 72px auto 0;
  overflow: hidden;
}

.art-section__contact {
  display: grid;
  justify-items: center;
  gap: 34px;
  padding: 72px 0 96px;
  text-align: center;
}

.merch {
  color: var(--black);
}

.merch--baki {
  background: var(--baki-red-soft);
}

.merch--skr {
  background: var(--skr-blue-soft);
}

.merch-hero {
  display: grid;
  align-items: center;
  width: 100%;
  min-height: 300px;
}

.merch-hero--baki {
  grid-template-columns: minmax(0, 1fr) 0.4fr;
  background: var(--baki-red);
}

.merch-hero--skr {
  grid-template-columns: 0.4fr minmax(0, 1fr);
  background: var(--skr-blue);
}

.merch-hero__copy {
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: 48px 0;
  text-align: center;
}

.merch-hero__logo--baki {
  width: min(100%, 180px);
}

.merch-hero__logo--skr {
  width: min(100%, 560px);
}

.merch-hero__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.merch-hero__image--baki {
align-self: baseline;
object-position: center top;
}

.merch-hero__image--skr {
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 350px));
  gap: 60px 50px;
  justify-content: center;
  width: min(calc(100% - 60px), var(--content));
  margin: 0 auto;
  padding: 72px 0 112px;
}

.product-grid--skr {
  padding-bottom: 126px;
}

.product-card {
  display: grid;
  gap: 20px;
}

.product-card__media {
  display: grid;
/*  aspect-ratio: 350 / 417;*/
  place-items: center;
  overflow: hidden;
/*  background: var(--white);*/
background: transparent;
}

.product-card__media img {
  display: block;
/*  width: calc(100% - 40px);
  height: calc(100% - 40px);*/
width: 100%;
height: 100%;
  object-fit: contain;
}

.product-card p {
  padding-top: 1em;
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.product-card a p {
color: #fff;
}

.newsletter-band {
  padding: 92px 0 100px;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.newsletter-band .section-inner {
  display: grid;
  justify-items: center;
  gap: 28px;
}

.newsletter-band .social-icons {
  margin-bottom: 16px;
}

.newsletter-band p:not(.newsletter-band__label) {
  max-width: 476px;
}

.site-footer {
  background: var(--footer);
  color: var(--white);
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 337px;
  gap: 64px;
  width: min(calc(100% - 60px), var(--content));
  margin: 0 auto;
  padding: 42px 0 28px;
  border-block: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer__brand {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 34px;
}

.site-footer__brand > img {
  width: 116px;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-family: var(--brand-font);
  font-size: 14px;
  text-transform: capitalize;
}

.social-icons--footer {
  justify-content: flex-start;
}

.footer-newsletter {
  display: grid;
  gap: 16px;
  align-content: start;
}

.footer-newsletter label {
  font-family: var(--brand-font);
  font-size: 32px;
  line-height: 1;
  text-align: center;
  text-transform: lowercase;
}

.footer-newsletter input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 0;
  border-radius: 4px;
  background: var(--white);
  color: var(--black);
  font-size: 16px;
}

.footer-newsletter button {
  min-height: 53px;
  border: 2px solid var(--white);
  background:
    url("../img/deco-header-left.png") 0 0 / 58px 46px no-repeat,
    url("../img/deco-header-right.png") 100% 100% / 58px 46px no-repeat,
    radial-gradient(178px 51px at 50% 0, #33aaaa 0%, #157d7d 100%);
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.32);
  color: var(--white);
  font-family: var(--cond-font);
  font-size: 24px;
  font-weight: var(--cond-weight);
  line-height: 1;
  text-transform: lowercase;
}

.site-footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 60px), var(--content));
  margin: 0 auto;
  padding: 26px 0 30px;
  color: var(--white);
  font-family: var(--brand-font);
  font-size: 12px;
  line-height: 1.2;
}

.site-footer__legal p {
  margin: 0;
}

@media (max-width: 980px) {
  .feature-links {
    gap: 30px;
  }

  .feature-link,
  .feature-link--skr {
    grid-template-columns: 1fr;
  }

  .feature-link__image {
    height: 500px;
  }

  .feature-link--skr .feature-link__image {
    order: 2;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 330px));
  }

  .site-footer__main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 759px) {
  :root {
    --side: 30px;
  }

  .site {
    width: 100%;
  }

body{hyphens: auto;}

br.sp{display: block;}
br.pc{display: none;}

  .section-inner,
  .section-inner--narrow {
    width: min(calc(100% - 60px), 390px);
  }

  .hero__desktop {
    display: none;
  }

  .hero__mobile {
    display: grid;
    height: auto;
    position: relative;
    overflow: hidden;
}

  .hero__mobile img {
    position: relative;
/*    top: 50%;
    left: 50%;*/
    width: 100%;
    height: auto;
    object-fit: contain;
/*    transform: translate(-50%, -50%);*/
  }

  .hero__brand {
    top: 50%;
    width: min(calc(100% - 105px), 285px);
    transform: translate(-50%, -50%);
  }

  .intro__inner {
    padding: 42px 0 67px;
  }

  .intro__heading {
    grid-template-columns: 61px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
  }

  .intro__badge {
    width: 61px;
    margin-top: 16px;
  }

  .intro h1 {
    font-size: 30px;
    line-height: 1.18;
  }

  .intro__copy {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.56;
  }

  .intro__note {
    margin-top: 26px;
    font-size: 11px;
    line-height: 1.8;
  }

  .booth-visual {
    aspect-ratio: 330 / 310;
    margin-top: 66px;
  }

  .intro-social {
    flex-direction: column;
    gap: 18px;
    margin-top: 40px;
  }

  .intro-newsletter {
    gap: 13px;
    margin-top: 30px;
    text-align: left;
  }

  .intro-newsletter p,
  .newsletter-band p,
  .section-copy,
  .art-section__intro p,
  .art-section__contact p,
  .merch-hero p {
    font-size: 16px;
    line-height: 1.56;
  }

.merch-hero__copy p{
    text-align: left;

}

  .button {
    min-height: 60px;
    padding-inline: 24px;
    font-size: 18px;
  }

  .feature-links {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
  }

  .feature-link,
  .feature-link--skr {
    grid-template-columns: 1fr 153px;
    min-height: 180px;
    height: 180px;
  }

  .feature-link--skr {
    grid-template-columns: 153px 1fr;
  }

  .feature-link--skr .feature-link__image {
    order: 0;
  }

  .feature-link__content {
    gap: 18px;
    padding: 24px 11px;
    font-size: 15px;
    line-height: 1.2;
  }

  .feature-link__image {
    height: 180px;
  }

  .feature-link__logo--baki {
    width: 100px;
  }

  .feature-link__logo--skr {
    width: 165px;
  }

  .art-section {
    padding-top: 57px;
  }

.art-section__intro p.lead{
    text-align: left;
}

  .art-section__eyebrow {
    font-size: 35px!important;
    line-height: 1.08!important;
    padding-bottom: 14px;
  }

  .art-section__subhead {
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.2;
  }

  .art-section h2 {
    margin: 11px 0 28px;
    font-size: 90px;
    line-height: 0.9;
  }

  .art-section h2 span:last-child {
    font-size: 50px;
  }

  .gallery {
    width: 100%;
    margin-top: 38px;
  }

  .gallery__main {
    aspect-ratio: 390 / 520;
  }

  .gallery__thumbs {
    gap: 5px;
    margin-top: 30px;
  }

  .gallery__thumb {
    width: 62px;
    aspect-ratio: 62 / 83;
  }

  .gallery__arrow {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .section-copy {
    margin-top: 30px;
    text-align: left;
  }

  .artist-visual {
    aspect-ratio: 1 / 1;
    width: 100%;
    margin-top: 50px;
  }

  .art-section__contact {
    gap: 22px;
    padding: 50px 0 58px;
    text-align: left;
  }

  .merch-hero--baki,
  .merch-hero--skr {
    grid-template-columns: 1fr;
  }

  .merch-hero__copy {
    gap: 20px;
    padding: 28px var(--side) 46px;
  }


  .merch-hero__copy br.pc{
display: none;
  }

  .merch-hero--baki .merch-hero__image {
    order: -1;
  }

  .merch-hero__image,
  .merch-hero__image--skr {
/*    height: 100%;*/

        height: auto;
        width: 93%;
}

  .merch-hero__image--baki {
    object-position: right top;
    margin-left: calc(100vw - 93%);
  }

  .merch-hero__logo--baki {
    width: 180px;
  }

  .merch-hero__logo--skr {
    width: 100%;
    max-width: 330px;
  }

  .product-grid {
    grid-template-columns: minmax(0, 330px);
    gap: 58px;
    width: min(calc(100% - 60px), 330px);
    padding: 50px 0 80px;
  }

  .product-card {
    gap: 10px;
  }

  .product-card__media {
    aspect-ratio: unset;
  }

  .product-card p {
    font-size: 16px;
    line-height: 1.56;
text-align: center;
  }

  .newsletter-band {
    padding: 84px 0 70px;
  }

  .newsletter-band .section-inner {
    gap: 26px;
  }

  .site-footer__main {
    justify-items: center;
    width: 100%;
    padding: 80px 30px;
  }

  .site-footer__brand {
    justify-items: center;
  }

  .site-footer__brand > img {
    width: 116px;
  }

  .site-footer__nav {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    font-family: var(--cond-font);
    font-size: 24px;
    font-weight: var(--cond-weight);
  }

  .social-icons--footer {
    justify-content: center;
  }

  .footer-newsletter {
    width: 100%;
    max-width: 337px;
  }

  .site-footer__legal {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 32px 30px;
    text-align: center;
  }
}
