:root {
  --bg: #07111f;
  --bg-soft: #0d1b2a;
  --panel: #101f30;
  --text: #f4f7fb;
  --muted: #a9b4c2;
  --yellow: #f4d11a;
  --line: rgba(255, 255, 255, 0.12);

  --max-width: 1180px;
  --radius: 22px;
}


/* =========================================================
   BASE
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.section-inner {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  line-height: 1.05;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 6vw, 5.3rem);
  letter-spacing: -0.05em;
}


/* =========================================================
   BUTTONS
========================================================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 54px;
  padding: 0 28px;

  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.06em;

  transition: transform 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--yellow);
  color: #0a0a0a;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: absolute;
  z-index: 20;

  top: 0;
  left: 0;

  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 24px 5vw;
}

.header-logo img {
  width: 52px;
  max-height: 52px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;

  font-size: 0.85rem;
  font-weight: 700;
}

.nav-ticket {
  padding: 12px 18px;

  background: var(--yellow);
  color: #090909;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;

  min-height: 860px;
  overflow: hidden;

  display: flex;
  align-items: flex-start;
  justify-content: center;

  padding: 78px 20px 90px;

  background: #06101d;
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-sky {
  position: absolute;
  z-index: 1;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.hero-stavanger {
  position: absolute;
  z-index: 2;

  left: 50%;
  bottom: 0;

  width: 100%;
  min-width: 1100px;
  max-width: none;

  transform: translateX(-50%);
}

.hero-texture {
  position: absolute;
  z-index: 3;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  opacity: 0.16;
}

.hero::after {
  content: "";

  position: absolute;
  z-index: 4;

  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      to bottom,
      rgba(2, 7, 13, 0.10) 0%,
      rgba(2, 7, 13, 0.04) 38%,
      rgba(2, 7, 13, 0.16) 58%,
      rgba(2, 7, 13, 0.68) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 6;

  width: min(100%, 820px);

  margin: 0 auto;

  text-align: center;

  transform: translateY(-70px);
}

.hero-content::before {
  content: "";

  position: absolute;
  z-index: -1;

  left: 50%;
  top: 225px;

  width: min(690px, 90vw);
  height: 330px;

  transform: translateX(-50%);

  background:
    radial-gradient(
      ellipse at center,
      rgba(3, 8, 14, 0.76) 0%,
      rgba(3, 8, 14, 0.54) 40%,
      rgba(3, 8, 14, 0.20) 68%,
      rgba(3, 8, 14, 0) 100%
    );

  filter: blur(8px);

  pointer-events: none;
}

.hero-logo {
  width: min(510px, 76vw);
  margin: 0 auto 12px;
}

.hero-date {
  margin-top: -45px;
  margin-bottom: 9px;

  color: var(--yellow);

  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;

  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero h1 {
  max-width: 820px;

  margin: 0 auto 12px;

  font-size: clamp(1.9rem, 2.8vw, 2.85rem);
  line-height: 1.05;
  letter-spacing: -0.045em;

  white-space: nowrap;

  text-shadow:
    0 3px 16px rgba(0, 0, 0, 0.85),
    0 1px 3px rgba(0, 0, 0, 0.9);
}

.hero h1 span {
  display: block;

  margin-top: 7px;

  color: #d5dde6;
}

.hero-intro {
  margin-bottom: 19px;

  color: #e4e9ef;

  font-size: clamp(0.95rem, 1.3vw, 1.1rem);

  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.hero .button {
  min-height: 50px;
  padding: 0 26px;
}


/* =========================================================
   INTRO
========================================================= */

.intro-section {
  position: relative;

  padding: 85px 0 75px;

  overflow: hidden;

  background:
    linear-gradient(
      to bottom,
      #07111f 0%,
      #081421 100%
    );
}

.intro-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: 0.9fr 1.1fr;
  gap: 85px;

  align-items: start;
}

.intro-heading h2 {
  margin-bottom: 30px;

  font-size: clamp(3.8rem, 6vw, 6.3rem);
  line-height: 0.92;
  letter-spacing: -0.03em;

  text-transform: uppercase;
}

.intro-heading h2 span {
  display: block;
  color: var(--yellow);
}

.intro-statement {
  display: inline-block;
  margin-top: 0;
}

.intro-statement p {
  margin: 0;

  color: var(--text);

  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.7rem);
  font-weight: 400;
  line-height: 1.05;

  text-transform: uppercase;
}

.intro-statement p span {
  display: block;
  color: var(--yellow);
}

.intro-brush-wrap {
  margin-top: 28px;
  margin-left: 200px;
}

.intro-crown {
  width: 250px;
  max-width: none;

  opacity: 0.95;

  transform: rotate(-6deg);
}

.intro-copy {
  padding-top: 38px;
}

.large-copy {
  max-width: 650px;

  margin-bottom: 28px;

  color: var(--text);

  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 600;
  line-height: 1.4;
}

.intro-copy > p:not(.large-copy) {
  max-width: 580px;

  margin-bottom: 0;

  color: var(--muted);

  font-size: 1.05rem;
  line-height: 1.75;
}

.intro-landmark {
  position: absolute;
  z-index: 0;

  right: 2%;
  bottom: -70px;

  width: 860px;
  max-height: none;

  object-fit: contain;
  object-position: bottom;

  opacity: 0.13;

  filter: grayscale(1);

  pointer-events: none;
}


/* =========================================================
   EXPERIENCE
========================================================= */

.experience-section {
  position: relative;

  padding: 100px 0 110px;

  overflow: hidden;

  background: #0a1624;
}

.experience-heading {
  margin-bottom: 42px;

  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.92;

  text-transform: uppercase;
}

.experience-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}


/* EXPERIENCE CARD */

.experience-card {
  position: relative;

  height: 190px;

  overflow: hidden;

  padding: 26px 28px;

  border: 1px solid rgba(255, 255, 255, 0.13);

  background:
    linear-gradient(
      145deg,
      #101f30 0%,
      #0d1a29 100%
    );

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.experience-card:hover {
  transform: translateY(-4px);

  border-color: rgba(244, 209, 26, 0.55);

  background:
    linear-gradient(
      145deg,
      #122338 0%,
      #0d1a29 100%
    );
}


/* EXPERIENCE TEXT */

.experience-copy {
  position: relative;
  z-index: 3;

  max-width: 68%;
}

.experience-copy h3 {
  margin: 0 0 8px;

  color: var(--text);

  font-size: clamp(2.4rem, 3.4vw, 3.6rem);
  line-height: 0.92;

  text-transform: uppercase;
}

.experience-copy p {
  margin: 0;

  color: var(--muted);

  font-size: 0.9rem;
  line-height: 1.45;
}


/* EXPERIENCE NUMBERS */

.experience-number {
  position: absolute;
  z-index: 1;

  right: 14px;
  bottom: -30px;

  color: rgba(255, 255, 255, 0.045);

  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(8rem, 13vw, 11rem);
  font-weight: 400;
  line-height: 1;

  pointer-events: none;
  user-select: none;
}


/* EXPERIENCE YELLOW GRAPHICS */

.experience-mark {
  position: absolute;
  z-index: 2;

  left: 100px;
  bottom: -10px;

  height: auto;

  object-fit: contain;

  pointer-events: none;
}

.mark-one {
  width: 220px;
  bottom: -55px;
}

.mark-two {
  width: 120px;
  bottom: -15px;
}

.mark-three {
  width: 220px;
  bottom: -70px;
}

.mark-four {
  width: 245px;
  bottom: -90px;
}


/* =========================================================
   VENUE
========================================================= */

.venue-section {
  position: relative;

  padding: 120px 0;

  overflow: hidden;

  border-top: 1px solid var(--line);

  background: var(--bg);
}

.venue-content {
  display: grid;

  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;

  align-items: start;
}


/* VENUE HEADING */

.venue-heading h2 {
  margin: 0;

  font-size: clamp(4.5rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.03em;

  text-transform: uppercase;
}

.venue-heading h2 span {
  display: block;
  color: var(--yellow);
}


/* VENUE COPY */

.venue-copy {
  padding-top: 38px;
}

.venue-copy p {
  max-width: 520px;

  color: var(--muted);

  font-size: 1rem;
  line-height: 1.7;
}

.venue-copy .venue-lead {
  margin-bottom: 18px;

  color: var(--text);

  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.4;
}


/* VENUE ADDRESS */

.venue-address {
  margin-top: 38px;
  padding-top: 24px;

  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.venue-address-label {
  display: block;

  margin-bottom: 12px;

  color: var(--yellow);

  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.venue-address strong {
  display: block;

  color: var(--text);

  font-family: "Anton", Impact, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;

  text-transform: uppercase;
}

.venue-address > span:not(.venue-address-label) {
  display: block;

  margin-top: 4px;

  color: var(--muted);

  font-size: 0.95rem;
}


/* VENUE MAP LINK */

.venue-map-link {
  display: inline-flex;
  align-items: center;

  margin-top: 22px;
  padding-bottom: 5px;

  border-bottom: 2px solid var(--yellow);

  color: var(--text);

  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;

  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.venue-map-link:hover {
  color: var(--yellow);
}


/* VENUE ILLUSTRATION */

.venue-illustration {
  display: block;

  width: 1500px;
  max-width: 500%;

  margin-top: -10px;
  margin-left: -350px;

  opacity: 0.22;

  pointer-events: none;
}

/* =========================================================
   VENDORS
========================================================= */

.vendors-section {
  padding: 105px 0 115px;

  background: #081421;

  border-top: 1px solid var(--line);
}

.vendors-heading-row {
  display: grid;

  grid-template-columns: 1fr 1fr;
  gap: 70px;

  align-items: end;

  margin-bottom: 55px;
}

.vendors-heading {
  margin: 0;

  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.035em;

  text-transform: uppercase;
}

.vendors-heading span {
  color: var(--yellow);
}

.vendors-intro {
  max-width: 520px;

  margin: 0 0 7px;

  color: var(--muted);

  font-size: 1rem;
  line-height: 1.7;
}


/* VENDOR GRID */

.vendors-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}


/* VENDOR CARD */

.vendor-card {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 0;
  aspect-ratio: 1 / 0.72;

  padding: 28px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.13);

  background:
    linear-gradient(
      145deg,
      #101f30 0%,
      #0d1a29 100%
    );

  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.vendor-card img {
  width: 100%;
  height: 100%;

  max-width: 180px;
  max-height: 105px;

  object-fit: contain;

  transition: transform 0.22s ease;
}

.vendor-card:hover {
  transform: translateY(-4px);

  border-color: rgba(244, 209, 26, 0.65);

  background:
    linear-gradient(
      145deg,
      #122338 0%,
      #0d1a29 100%
    );
}

.vendor-card:hover img {
  transform: scale(1.05);
}

/* =========================================================
   CONTACT
========================================================= */

.contact-section {
  position: relative;

  padding: 110px 0 120px;

  overflow: hidden;

  background: #07111f;

  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;

  align-items: center;
}


/* CONTACT LEFT */

.contact-heading h2 {
  margin: 0 0 30px;

  font-size: clamp(4.5rem, 7vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.03em;

  text-transform: uppercase;
}

.contact-heading h2 span {
  color: var(--yellow);
}

.contact-intro {
  max-width: 470px;

  margin: 0;

  color: var(--muted);

  font-size: 1rem;
  line-height: 1.7;
}


/* CONTACT DETAILS */

.contact-form {
  display: flex;
  flex-direction: column;

  padding: 0;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.14);

  background:
    linear-gradient(
      145deg,
      #101f30 0%,
      #0c1927 100%
    );
}

.contact-form .form-field {
  margin: 0;
  padding: 28px 30px;
}

.contact-form .form-field + .form-field {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-form .form-field label {
  display: block;

  margin: 0 0 9px;

  color: var(--yellow);

  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.contact-form .form-field p {
  margin: 0 0 14px;

  color: var(--text);

  font-size: 0.95rem;
  line-height: 1.6;
}


/* EMAIL LINKS */

.contact-form .contact-submit {
  display: inline-flex;
  align-items: center;

  width: fit-content;
  min-height: 0;

  padding: 0 0 4px;

  border: 0;
  border-bottom: 0;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;

  background: transparent;
  color: var(--yellow);

  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;

  cursor: pointer;

  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.contact-form .contact-submit:hover {
  transform: translateX(4px);

  background: transparent;
  color: var(--text);

  border-color: var(--text);
}


/* CONTACT MOBILE */

@media (max-width: 800px) {

  .contact-section {
    padding: 50px 0 85px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;

    align-items: start;
  }

  .contact-heading h2 {
    margin-bottom: 16px;

    font-size: clamp(4rem, 17vw, 5.5rem);
  }

  .contact-intro {
    max-width: none;
  }

  .contact-form .form-field {
    padding: 22px 20px;
  }

  .contact-form .form-field p {
    font-size: 0.92rem;
  }

  .contact-form .contact-submit {
    width: auto;

    font-size: 0.84rem;

    overflow-wrap: anywhere;
  }

}
/* =========================================================
   TICKETS
========================================================= */

.ticket-section {
  position: relative;

  padding: 30px 0 40px;

  overflow: hidden;

  background: var(--yellow);
  color: #08111d;
}

.ticket-content {
  text-align: center;
}

.ticket-section .eyebrow {
  margin-bottom: 80px;
  color: #08111d;
}

.ticket-section h2 {
  margin: 0;

  font-size: clamp(5rem, 9vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.035em;

  text-transform: uppercase;
}

.ticket-lead {
  max-width: 600px;

  margin: 28px auto 0;

  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.6;
}

.ticket-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 58px;

  margin-top: 36px;
  padding: 0 34px;

  border: 2px solid #08111d;

  background: #08111d;
  color: #ffffff;

  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.ticket-button:hover {
  transform: translateY(-3px);

  background: transparent;
  color: #08111d;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  padding: 42px 0 52px;

  background: #03080f;

  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-inner {
  width: min(calc(100% - 40px), var(--max-width));

  margin: 0 auto;

  display: grid;

  grid-template-columns: 1fr auto 1fr;
  gap: 40px;

  align-items: center;
}

.footer-logo {
  width: 180px;
  max-width: 100%;
}

.footer-organizer {
  text-align: center;
}

.footer-organizer span {
  display: block;

  margin-bottom: 10px;

  color: var(--muted);

  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.footer-organizer a {
  display: inline-block;
}

.footer-organizer img {
  width: 170px;
  max-height: 78px;

  object-fit: contain;

  opacity: 0.95;

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.footer-organizer a:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-inner > p {
  margin: 0;

  color: var(--muted);

  text-align: right;

  font-size: 0.75rem;
  line-height: 1.5;
}


/* =========================================================
   MOBILE TICKET BAR
========================================================= */

.mobile-ticket-button {
  display: none;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {


  /* BODY */

  body {
    padding-bottom: 68px;
  }


  /* HEADER */

  .site-header {
    padding: 18px 20px;
  }

  .header-logo img {
    width: 42px;
  }

  .main-nav a:not(.nav-ticket) {
    display: none;
  }

  .nav-ticket {
    display: none;
  }


  /* HERO */

  .hero {
    min-height: 760px;
    padding: 95px 18px 70px;
  }

  .hero-logo {
    width: min(430px, 88vw);
    margin-bottom: 28px;
  }

  .hero-content::before {
    top: 210px;
    width: 110vw;
    height: 420px;
  }

  .hero-stavanger {
    left: 50%;
    bottom: 0;

    width: 145%;
    min-width: 900px;

    transform: translateX(-50%);
  }

  .hero-date {
    margin-bottom: 12px;

    font-size: 0.72rem;
  }

  .hero h1 {
    max-width: 350px;

    margin: 0 auto 14px;

    font-size: clamp(1.75rem, 7.2vw, 2.35rem);
    line-height: 1.03;
    letter-spacing: -0.035em;

    white-space: normal;
  }


  /* INTRO */

  .intro-section {
    padding: 80px 0 85px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .intro-heading h2 {
    margin-bottom: 28px;

    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .intro-statement p {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .intro-brush-wrap {
    margin-top: 20px;
    margin-left: 0;
  }

  .intro-crown {
    width: 190px;
    max-width: 100%;

    margin-left: 90px;
  }

  .intro-copy {
    padding-top: 0;
  }


  /* EXPERIENCE */

  .experience-section {
    padding: 90px 0;
  }

  .experience-heading {
    margin-bottom: 30px;

    font-size: clamp(3.6rem, 17vw, 5.3rem);
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .experience-card {
    height: 180px;
    min-height: auto;

    padding: 24px;
  }

  .experience-copy {
    max-width: 72%;
  }

  .experience-copy h3 {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }

  .experience-number {
    right: 10px;
    bottom: -22px;

    font-size: 8rem;
  }

  .experience-card span {
    margin-bottom: 45px;
  }

  .experience-mark {
    left: 24px;
    bottom: 16px;
  }

  .mark-one {
    width: 95px;
    bottom: -35px;
    left: 110px;
  }

  .mark-two {
    width: 95px;
    bottom: -15px;
    left: 90px;
  }

  .mark-three {
    width: 170px;
    bottom: -55px;
    left: 50px;
  }

  .mark-four {
    width: 245px;
    bottom: -105px;
    left: 50px;
  }


  /* VENUE */

  .venue-section {
    padding: 90px 0 45px;
  }

  .venue-content {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .venue-heading,
  .venue-copy {
    width: 100%;
    min-width: 0;
  }

  .venue-heading h2 {
    font-size: clamp(4rem, 17vw, 5.5rem);
  }

  .venue-copy {
    padding-top: 0;
  }

  .venue-address {
    margin-top: 30px;
  }

  .venue-illustration {
    width: 720px;
    max-width: none;

    margin-top: 20px;
    margin-left: -170px;

    opacity: 0.22;
  }



  /* TICKETS */

.ticket-section {
  padding: 45px 0 50px;
}

.ticket-section .eyebrow {
  margin-bottom: 30px;
}

.ticket-section h2 {
  font-size: clamp(4rem, 18vw, 6rem);
}

.ticket-lead {
  margin-top: 20px;
  font-size: 1rem;
}

.ticket-button {
  width: 100%;
  max-width: 360px;
  margin-top: 28px;
}

/* VENDORS */

.vendors-section {
  padding: 75px 0 80px;
}

.vendors-heading-row {
  grid-template-columns: 1fr;
  gap: 24px;

  margin-bottom: 36px;
}

.vendors-heading {
  font-size: clamp(3.6rem, 16vw, 5.3rem);
}

.vendors-intro {
  font-size: 0.95rem;
}

.vendors-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.vendor-card {
  padding: 18px;
}

.vendor-card img {
  max-width: 140px;
  max-height: 85px;
}

  /* FOOTER */

  .site-footer {
    padding: 50px 0 90px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;

    text-align: center;
  }

  .footer-logo {
    width: 190px;

    margin: 0 auto;
  }

  .footer-organizer img {
    margin: 0 auto;
  }

  .footer-inner > p {
    text-align: center;
  }


  /* FIXED MOBILE TICKET BUTTON */

  .mobile-ticket-button {
    position: fixed;
    z-index: 50;

    left: 0;
    bottom: 0;

    display: flex;

    width: 100%;
    height: 68px;

    align-items: center;
    justify-content: center;

    background: var(--yellow);
    color: #080808;

    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.08em;
  }
}