* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #0b0b0f;
  --white: #f7f5ef;
  --violet: #6753ff;
  --orange: #ff6d3e;
  --yellow: #f0ff4f;
  --gray: #9b9ba6;
  --panel: #17171d;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

/* HEADER */

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;

  width: 100%;
  padding: 14px 4vw;

  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 32px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(11, 11, 15, 0.82);

  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;

  font-weight: 800;
}

.brand-mark {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border-radius: 12px;
  background: var(--violet);

  font-family: "Archivo Black", sans-serif;
  font-size: 0.8rem;

  transform: rotate(-4deg);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.68);

  font-size: 0.78rem;
  font-weight: 700;
}

.desktop-nav a:hover {
  color: var(--yellow);
}

.header-cta {
  padding: 8px 9px 8px 18px;

  display: flex;
  align-items: center;
  gap: 14px;

  border-radius: 999px;

  background: var(--white);
  color: var(--black);

  font-size: 0.76rem;
  font-weight: 800;
}

.header-cta span {
  width: 36px;
  height: 36px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  background: var(--orange);
}

.menu-button {
  display: none;

  width: 48px;
  height: 48px;

  border: 0;
  border-radius: 50%;

  background: var(--white);
  cursor: pointer;
}

.menu-button span {
  display: block;

  width: 19px;
  height: 2px;

  margin: 5px auto;

  background: var(--black);
}

/* MENU MOBILE */

.mobile-menu {
  position: fixed;
  z-index: 900;
  inset: 0;

  padding: 110px 24px 40px;

  background: var(--violet);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu a {
  padding: 16px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.2);

  font-family: "Archivo Black", sans-serif;
  font-size: 2.8rem;
  text-transform: uppercase;
}

/* HERO */

.hero {
  min-height: 100vh;
  padding: 135px 4vw 60px;
}

.hero-grid {
  min-height: 760px;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.eyebrow,
.section-heading > span,
.experience-copy > span,
.venue-copy > span,
.newsletter span {
  display: block;
  margin-bottom: 22px;

  color: var(--yellow);

  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.experience-copy h2,
.venue-copy h2,
.newsletter h2 {
  font-family: "Archivo Black", sans-serif;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(5.2rem, 10vw, 10.5rem);
  line-height: 0.78;
}

.hero h1 span {
  display: block;
  color: var(--violet);
}

.hero-copy > p {
  max-width: 620px;
  margin-top: 32px;

  color: rgba(255, 255, 255, 0.58);

  font-size: 1rem;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 35px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-primary,
.button-secondary {
  padding: 16px 22px;

  border-radius: 999px;

  font-size: 0.78rem;
  font-weight: 800;

  transition: transform 0.25s ease;
}

.button-primary:hover,
.button-secondary:hover {
  transform: translateY(-4px);
}

.button-primary {
  background: var(--orange);
  color: var(--black);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
}

/* COMPTE À REBOURS */

.countdown {
  margin-top: 55px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.countdown div {
  padding: 18px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.035);
}

.countdown strong {
  display: block;

  font-family: "Archivo Black", sans-serif;
  font-size: 1.7rem;
}

.countdown span {
  color: var(--gray);
  font-size: 0.65rem;
}

/* AFFICHE HERO */

.hero-poster {
  position: relative;

  min-height: 690px;
  padding: 40px;
  overflow: hidden;

  border-radius: 30px;

  background: var(--violet);

  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.4);

  transform: rotate(2deg);
}

.poster-noise {
  position: absolute;
  inset: 0;

  opacity: 0.18;

  background:
    repeating-linear-gradient(
      0deg,
      transparent 0 4px,
      rgba(255, 255, 255, 0.14) 5px 6px
    );
}

.poster-top {
  position: relative;
  z-index: 2;

  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero-poster > strong {
  position: absolute;
  z-index: 2;

  right: 32px;
  top: 32px;

  color: var(--yellow);

  font-family: "Archivo Black", sans-serif;
  font-size: 2rem;
}

.hero-poster h2 {
  position: absolute;
  z-index: 2;

  left: 35px;
  bottom: 145px;

  font-family: "Archivo Black", sans-serif;
  font-size: clamp(5rem, 8vw, 8.5rem);
  line-height: 0.78;
  letter-spacing: -0.08em;
}

.hero-poster p {
  position: absolute;
  z-index: 2;

  left: 38px;
  bottom: 90px;

  font-weight: 800;
}

.poster-orbit {
  position: absolute;

  width: 330px;
  height: 330px;

  right: -90px;
  top: 100px;

  border: 35px solid var(--orange);
  border-radius: 50%;
}

.poster-ticket {
  position: absolute;
  z-index: 2;

  right: 28px;
  bottom: 28px;

  padding: 13px 16px;

  background: var(--yellow);
  color: var(--black);

  font-size: 0.7rem;
  font-weight: 800;

  transform: rotate(-5deg);
}

/* TICKER */

.ticker {
  overflow: hidden;

  background: var(--yellow);
  color: var(--black);
}

.ticker-track {
  width: max-content;

  display: flex;

  animation: ticker-scroll 18s linear infinite;
}

.ticker-group {
  min-width: 100vw;
  padding: 20px 30px;

  display: flex;
  justify-content: space-around;
  gap: 50px;
}

.ticker-group span {
  font-family: "Archivo Black", sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.ticker-group i {
  color: var(--violet);
}

@keyframes ticker-scroll {
  to {
    transform: translateX(-50%);
  }
}

/* SECTIONS */

.programme,
.artists,
.experience,
.venue,
.tickets,
.newsletter {
  padding: 120px 4vw;
}

.section-heading {
  max-width: 1100px;
  margin-bottom: 65px;
}

.section-heading h2,
.experience-copy h2,
.venue-copy h2,
.newsletter h2 {
  font-size: clamp(3.5rem, 6vw, 6.8rem);
  line-height: 0.9;
}

/* PROGRAMME */

.schedule {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.schedule article {
  padding: 28px 0;

  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 35px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.14);

  transition:
    padding 0.25s ease,
    background 0.25s ease;
}

.schedule article:hover {
  padding-left: 18px;
  padding-right: 18px;

  background: rgba(255, 255, 255, 0.035);
}

.time {
  color: var(--violet);

  font-family: "Archivo Black", sans-serif;
  font-size: 2rem;
}

.tag {
  color: var(--yellow);

  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.schedule h3 {
  margin-top: 8px;
  font-size: 1.45rem;
}

.schedule p {
  margin-top: 7px;

  color: var(--gray);
  font-size: 0.8rem;
}

.schedule > article > strong {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--white);
  color: var(--black);
}

/* ARTISTES */

.artists {
  background: var(--white);
  color: var(--black);
}

.section-heading.split {
  max-width: none;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
}

.section-heading.split p {
  color: #666666;
  line-height: 1.8;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.artist-card {
  padding: 16px 16px 24px;

  border-radius: 28px;

  transition: transform 0.3s ease;
}

.artist-card:hover {
  transform: translateY(-10px);
}

.artist-card > span {
  display: block;
  margin-top: 18px;

  font-size: 0.68rem;
  font-weight: 800;
}

.artist-card h3 {
  margin-top: 6px;

  font-family: "Archivo Black", sans-serif;
  font-size: 2.1rem;
  text-transform: uppercase;
}

.artist-violet {
  background: var(--violet);
}

.artist-orange {
  background: var(--orange);
}

.artist-yellow {
  background: var(--yellow);
}

.portrait {
  position: relative;

  height: 430px;
  overflow: hidden;

  display: grid;
  place-items: center;

  border-radius: 20px;

  background: #111111;
}

.portrait::before {
  content: "";

  position: absolute;

  width: 210px;
  height: 260px;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -46%);

  border-radius: 50% 50% 42% 42%;

  background: #dddddd;
}

.portrait::after {
  content: "";

  position: absolute;

  width: 280px;
  height: 170px;

  left: 50%;
  bottom: -40px;

  transform: translateX(-50%);

  border-radius: 50% 50% 0 0;

  background: #222222;
}

.portrait span {
  position: relative;
  z-index: 3;

  color: var(--black);

  font-family: "Archivo Black", sans-serif;
  font-size: 3rem;
}

.portrait-two::before {
  background: #f7d4c5;
}

.portrait-three::before {
  background: #b8c7ff;
}

/* EXPÉRIENCE */

.experience {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.experience-copy p,
.venue-copy p {
  margin-top: 28px;

  color: var(--gray);
  line-height: 1.8;
}

.experience-copy ul {
  margin-top: 38px;

  list-style: none;

  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.experience-copy li {
  padding: 18px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.14);

  font-weight: 700;
}

.experience-copy li span {
  display: inline-block;
  width: 46px;

  color: var(--orange);

  font-size: 0.7rem;
}

.experience-visual {
  position: relative;

  min-height: 650px;
  overflow: hidden;

  border-radius: 30px;

  background: #15151c;
}

.beam {
  position: absolute;

  width: 120px;
  height: 700px;

  top: -80px;

  background:
    linear-gradient(
      var(--violet),
      transparent
    );

  filter: blur(10px);
  transform-origin: top;
}

.beam-one {
  left: 20%;
  transform: rotate(20deg);
}

.beam-two {
  right: 20%;

  background:
    linear-gradient(
      var(--orange),
      transparent
    );

  transform: rotate(-20deg);
}

.stage {
  position: absolute;

  left: 15%;
  right: 15%;
  bottom: 22%;

  height: 18%;

  border-top: 14px solid var(--yellow);
  background: #333333;
}

.crowd {
  position: absolute;

  left: 10%;
  right: 10%;
  bottom: 8%;

  display: flex;
  justify-content: space-around;
}

.crowd i {
  width: 42px;
  height: 95px;

  border-radius: 50% 50% 0 0;

  background: #050505;
}

.crowd i:nth-child(even) {
  height: 120px;
}

.experience-label {
  position: absolute;

  left: 25px;
  bottom: 25px;

  padding: 12px 15px;

  background: var(--yellow);
  color: var(--black);

  font-size: 0.68rem;
  font-weight: 800;
}

/* LIEU */

.venue {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;

  background: var(--violet);
}

.venue-map {
  position: relative;

  min-height: 600px;
  overflow: hidden;

  border-radius: 30px;

  background: #ece9e1;
}

.map-grid {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      transparent 49%,
      rgba(0, 0, 0, 0.08) 50%
    ),
    linear-gradient(
      transparent 49%,
      rgba(0, 0, 0, 0.08) 50%
    );

  background-size: 60px 60px;
}

.map-pin {
  position: absolute;

  left: 50%;
  top: 45%;

  width: 90px;
  height: 90px;

  display: grid;
  place-items: center;

  border-radius: 50% 50% 50% 0;

  background: var(--orange);
  color: var(--black);

  transform:
    translate(-50%, -50%)
    rotate(-45deg);
}

.map-pin span {
  font-family: "Archivo Black", sans-serif;
  transform: rotate(45deg);
}

.map-line {
  position: absolute;

  height: 13px;

  border-radius: 999px;
  background: var(--black);
}

.map-line-one {
  width: 70%;

  left: -10%;
  top: 30%;

  transform: rotate(25deg);
}

.map-line-two {
  width: 65%;

  right: -10%;
  bottom: 28%;

  transform: rotate(-18deg);
}

.venue-info {
  margin-top: 38px;
}

.venue-info div {
  padding: 16px 0;

  display: flex;
  flex-direction: column;

  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.venue-info span {
  font-size: 0.65rem;
  opacity: 0.65;
}

.venue-info strong {
  margin-top: 5px;
}

/* BILLETS */

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ticket-card {
  min-height: 470px;
  padding: 28px;

  display: flex;
  flex-direction: column;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;

  background: var(--panel);

  transition: transform 0.3s ease;
}

.ticket-card:hover {
  transform: translateY(-8px);
}

.ticket-card > span {
  color: var(--yellow);

  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ticket-card h3 {
  margin-top: 25px;

  font-family: "Archivo Black", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
}

.ticket-card > strong {
  margin-top: 18px;

  color: var(--orange);

  font-family: "Archivo Black", sans-serif;
  font-size: 3rem;
}

.ticket-card p {
  margin-top: 14px;
  color: var(--gray);
}

.ticket-card ul {
  margin: 25px 0 30px;
  padding-left: 18px;

  color: #dddddd;
  line-height: 1.9;
}

.ticket-card button {
  margin-top: auto;
  padding: 15px;

  border: 0;
  border-radius: 999px;

  background: var(--white);
  color: var(--black);

  font-weight: 800;
  cursor: pointer;
}

.featured {
  background: var(--violet);
  transform: translateY(-15px);
}

.featured:hover {
  transform: translateY(-22px);
}

.featured > strong {
  color: var(--yellow);
}

/* NEWSLETTER */

.newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 70px;

  background: var(--orange);
  color: var(--black);
}

.newsletter span {
  color: var(--black);
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 17px;

  border: 0;
  border-radius: 999px;

  font: inherit;
}

.newsletter-form button {
  padding: 17px 22px;

  border: 0;
  border-radius: 999px;

  background: var(--black);
  color: var(--white);

  font-weight: 800;
  cursor: pointer;
}

/* FOOTER */

footer {
  padding: 70px 4vw 28px;

  background: #050507;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand p {
  margin-top: 5px;

  color: var(--gray);
  font-size: 0.75rem;
}

.footer-links {
  margin: 55px 0;
  padding: 32px 0;

  display: flex;
  gap: 30px;

  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;

  color: rgba(255, 255, 255, 0.36);
  font-size: 0.7rem;
}

/* ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(28px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* TABLETTE */

@media (max-width: 1000px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: block;
  }

  .hero-grid,
  .experience,
  .venue,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .artist-grid,
  .ticket-grid {
    grid-template-columns: 1fr;
  }

  .section-heading.split {
    grid-template-columns: 1fr;
  }

  .featured {
    transform: none;
  }

  .featured:hover {
    transform: translateY(-8px);
  }
}

/* MOBILE */

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .hero {
    padding: 110px 20px 60px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(4.8rem, 23vw, 7rem);
  }

  .hero-poster {
    min-height: 520px;
    padding: 24px;
  }

  .hero-poster h2 {
    left: 22px;
    bottom: 130px;

    font-size: 4.7rem;
  }

  .hero-poster p {
    left: 24px;
  }

  .countdown {
    grid-template-columns: 1fr 1fr;
  }

  .programme,
  .artists,
  .experience,
  .venue,
  .tickets,
  .newsletter {
    padding: 85px 20px;
  }

  .section-heading h2,
  .experience-copy h2,
  .venue-copy h2,
  .newsletter h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .schedule article {
    grid-template-columns: 85px 1fr;
  }

  .schedule > article > strong {
    display: none;
  }

  .portrait {
    height: 360px;
  }

  .experience-visual,
  .venue-map {
    min-height: 460px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-links,
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }
}
.back-kestryo {
  position: fixed;
  z-index: 1200;

  left: 22px;
  bottom: 22px;

  padding: 12px 18px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;

  background: rgba(15, 15, 15, 0.88);
  color: #ffffff;

  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;

  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.back-kestryo:hover {
  transform: translateY(-4px);
  background: #000000;
}

.back-kestryo span {
  font-size: 1rem;
}

@media (max-width: 640px) {
  .back-kestryo {
    left: 14px;
    bottom: 14px;

    padding: 10px 14px;

    font-size: 0.68rem;
  }
}