@font-face {
  font-family: "Beklon";
  src: url("../fonts/BEKLON STENCIL STR  1.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sifonn";
  src: url("../fonts/SIFONN_PRO 2.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #000;
  --white: #fff;
  --cyan: #24bdd6;
  --pink: #e31c79;
  --yellow: #ffc022;
  --pale-pink: #efd5e9;
  --max: 1460px;
  --content: 1200px;
  --font-display: "Beklon", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-body: "Sifonn", Inter, Arial, Helvetica, sans-serif;
  --font-text: "Montserrat", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.25;
}

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

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

h1,
h2,
.event-date,
.event-location,
.artists,
.archives-hero h1,
.season-heading h2,
.artist-description-text h3 {
  font-family: var(--font-display);
  font-weight: 400;
}

h2 {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 46px);
  line-height: .9;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--yellow);
  font-family: var(--font-body);
  font-size: clamp(13px, 1.1vw, 18px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ==========================================================
   HEADER
========================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px clamp(12px, 2vw, 24px);
  background: rgba(0, 0, 0, .92);
  border-bottom: 1px solid rgba(255, 192, 34, .35);
  backdrop-filter: blur(10px);
}

.brand img {
  width: clamp(92px, 10vw, 130px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.site-nav a {
  opacity: .88;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
  color: var(--yellow);
}

.nav-ticket {
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff !important;
  opacity: 1 !important;
  transition: .25s ease;
}

.nav-ticket:hover,
.nav-ticket:focus-visible {
  background: var(--yellow);
  color: #000 !important;
}

.nav-ptitchnit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 100px;
  padding: 8px 12px;

  border-radius: 999px;
  background: #2a3b19;
  color: var(--pale-pink) !important;
  overflow: visible;

  transition: background .25s ease;
}

.nav-ptitchnit span {
  transition: opacity .20s ease;
}

.nav-ptitchnit::after {
  content: "";

  position: absolute;
  left: 50%;
  top: 50%;

  width: 110px;
  height: 110px;

  background: url("../img/logo/leptitchnit-logo.png") center / contain no-repeat;

  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;

  transition:
    transform .35s cubic-bezier(.22,1.3,.36,1),
    opacity .20s ease;
}

.nav-ptitchnit:hover {
  background: transparent;
  color: transparent !important;
}

.nav-ptitchnit:hover span {
  opacity: 0;
}

.nav-ptitchnit:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 10px;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 3px;
  margin: 5px 4px;
  border-radius: 99px;
  background: #000;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-link {
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 80;

  display: flex;
  flex-direction: column;
  min-width: 170px;
  padding: 8px;

  background: #000;
  border: 1px solid rgba(255, 192, 34, .55);
  border-radius: 14px;

  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 999px;
  color: #fff;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: var(--yellow);
  color: #000;
}

/* ==========================================================
   ANCHOR OFFSET
   Compensation du header fixe
========================================================== */

#accueil,
#programmation,
#dates,
#newsletter,
#instagram,
#artistes {
  scroll-margin-top: 100px;
}

/* ==========================================================
   TRANSITION SLIDER
========================================================== */

.transition-slider-section {
  background: #000;
  padding: 36px 0 46px;
}

.transition-slider {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  overflow: hidden;
}

.transition-slider-track {
  display: flex;
  transition: transform .75s cubic-bezier(.22, .61, .36, 1);
}

.transition-slide {
  flex: 0 0 100%;
  width: 100%;
}

.transition-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.transition-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .6);
  color: var(--yellow);
  font-size: 42px;
  line-height: 40px;
  cursor: pointer;
  transform: translateY(-50%);
}

.transition-slider-prev {
  left: 16px;
}

.transition-slider-next {
  right: 16px;
}

.transition-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.transition-slider-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
}

.transition-slider-dot.is-active {
  width: 26px;
  border-radius: 999px;
  background: var(--yellow);
}

/* ==========================================================
   ARTIST SLIDER
========================================================== */

.artist-slider-section {
  background: #000;
  padding: 36px 0 46px;
}

.artist-slider {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  overflow: hidden;
}

.artist-slider-track {
  display: flex;
  transition: transform .75s cubic-bezier(.22, .61, .36, 1);
}

.artist-slide {
  flex: 0 0 100%;
  width: 100%;
}

.artist-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.artist-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .6);
  color: var(--yellow);
  font-size: 42px;
  line-height: 40px;
  cursor: pointer;
  transform: translateY(-50%);
}

.artist-slider-prev {
  left: 16px;
}

.artist-slider-next {
  right: 16px;
}

.artist-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.artist-slider-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
}

.artist-slider-dot.is-active {
  width: 26px;
  border-radius: 999px;
  background: var(--yellow);
}

/* ==========================================================
   ARTIST SLIDER - DESKTOP / MOBILE
========================================================== */
.artist-slider-mobile {
  display: none;
}
.artist-slider-desktop {
  display: block;
}
@media (max-width: 700px) {
  .artist-slider-desktop {
    display: none;
  }
  .artist-slider-mobile {
    display: block;
  }
  .artist-slider-section {
    padding: 18px 0 26px;
  }
  .artist-slider-mobile {
    width: min(100% - 24px, 600px);
  }
  .artist-slider-mobile .artist-slide img {
    width: 100%;
    height: auto;
  }
}

/* ==========================================================
   EVENT INTRO
========================================================== */

.event-intro {
  background: #000;
  text-align: center;
  padding: 44px 16px 50px;
}

.event-intro .container {
  max-width: var(--content);
}

.intro-title {
  margin: 0 0 36px;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(18px, 1.6vw, 27px);
  font-weight: 400;
  line-height: 1.25;
}

.event-date {
  margin-bottom: 6px;
  color: var(--pink);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: .9;
  letter-spacing: 2px;
}

.event-location {
  margin-bottom: 32px;
  color: var(--pink);
  font-size: clamp(14px, 1.5vw, 24px);
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.artists {
  margin-bottom: 16px;
  color: var(--yellow);
  font-size: clamp(20px, 2.3vw, 34px);
  line-height: 1.05;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.intro-highlight {
  margin: 34px 0 22px;
  color: var(--cyan);
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 24px);
  font-weight: 400;
  line-height: 1.15;
}

.season-text {
  margin: 0 0 30px;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 23px);
  font-weight: 400;
  line-height: 1.15;
}

.ticket-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  margin-top: 12px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(14px, 2vw, 26px);
  cursor: pointer;
  transition: .25s ease;
}

.ticket-button:hover,
.ticket-button:focus-visible {
  background: var(--cyan);
  color: #fff;
}

/* ==========================================================
   ARTIST DESCRIPTIONS
========================================================== */

.artist-description-section {
  background: #000;
  padding: 50px 0 60px;
}

.artist-description-title {
  margin: 0 0 40px;
  text-align: center;
  color: var(--pink);
}

.artist-description-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 60px;
}

.artist-description-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
}

.artist-description-card img {
  display: block;
  width: 220px;
  height: auto;
}

.artist-description-text h3 {
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: 42px;
  line-height: 1;
  text-transform: uppercase;
}

.artist-description-text p {
  margin: 0;
  color: #fff;
  font-family: var(--font-text);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
}

/* ==========================================================
   NEWSLETTER - INFOMANIAK V3
========================================================== */

.newsletter {
  background: #000;
  color: #fff;
  padding: 36px 0 40px;
}

.newsletter .container {
  max-width: 860px;
}

.lechnit-newsletter-form {
  margin: 0 auto;
}

.inf-main_67388f1834f7d6243b753ec33584a8df {
  background: #000;
  padding: 0;
  margin: 0 auto;
}

.inf-main_67388f1834f7d6243b753ec33584a8df h4 {
  margin: 0 0 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(17px, 1.3vw, 22px);
  font-weight: 400;
}

.inf-main_67388f1834f7d6243b753ec33584a8df span {
  display: block;
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(14px, 1.1vw, 17px);
}

.inf-content {
  margin-top: 12px;
}

.inf-input input {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 12px;
  background: #f4f4f4;
  color: #111;
  font-family: var(--font-body);
  font-size: clamp(14px, 1vw, 16px);
}

.inf-submit {
  text-align: right;
}

.inf-submit input {
  height: 42px;
  margin-top: 12px;
  padding: 0 18px;
  border-radius: 999px;
  border: 0;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(14px, 1vw, 16px);
  cursor: pointer;
}

.inf-submit input:hover {
  background: var(--cyan);
  color: #000;
}

/* ==========================================================
   SEASON VISUAL - DATES
========================================================== */

.season-visual img {
  display: block;
  width: 100%;
  height: auto;
}

/* ==========================================================
   INSTAGRAM
========================================================== */

#instagram.instagram-feed {
  width: 100%;
  margin-top: 48px;
  padding: 42px 0 52px;
  background: var(--cyan);
}

.instagram-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

#instagram .lightwidget-widget {
  display: block;
  width: 100% !important;
  max-width: 100%;
  min-height: 720px;
  border: 0 !important;
  overflow: hidden !important;
  background: var(--yellow);
}

/* ==========================================================
   PARTNER + FOOTER
========================================================== */

.partners-section {
  background: var(--pink);
  padding: 32px 20px 28px;
  text-align: center;
}

.partners-title {
  margin: 0 0 22px;
  color: #111;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
}

.partner-logo img {
  display: block;
  width: 420px;
  max-width: 90%;
  height: auto;
  margin: 0 auto;
}

.site-footer {
  width: 100%;
  padding: 22px 0 24px;
  border-top: 1px solid rgba(255, 192, 34, .35);
  background: #000;
  text-align: center;
}

.site-footer .footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-copyright {
  margin: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1;
  transition: .25s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* ==========================================================
   ARCHIVES PAGE
========================================================== */

.archives-hero {
  background: #000;
  color: #fff;
  padding: clamp(30px, 4.5vw, 58px) 0 clamp(24px, 3.5vw, 38px);
  border-bottom: 1px solid rgba(255, 192, 34, .35);
}

.archives-hero h1 {
  margin: 0;
  color: var(--pink);
  font-size: clamp(32px, 4.6vw, 66px);
  line-height: .88;
  letter-spacing: .015em;
  text-transform: uppercase;
}

.archives-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--cyan);
  font-family: var(--font-body);
  font-size: clamp(13px, 1.2vw, 20px);
  line-height: 1.15;
}

.season-nav {
  display: block;
  margin-top: 22px;
  text-align: center;
}

.season-main-button {
  display: inline-flex;
  margin: 0 auto 18px;
}

.season-buttons-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.season-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 5px 11px;
  border: 1px solid var(--yellow);
  border-radius: 999px;
  color: var(--yellow);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: .25s ease;
}

.season-nav a:hover,
.season-nav a:focus-visible {
  background: var(--yellow);
  color: #000;
}

.archive-season {
  background: #000;
  padding: clamp(26px, 4vw, 44px) 0;
}

.archive-season:nth-of-type(even) {
  background: #080808;
}

.season-heading {
  margin-bottom: 16px;
}

.season-heading h2 {
  color: var(--yellow);
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 16px);
}

.season-card {
  margin: 0;
  overflow: visible;
  border: 1px solid rgba(255, 192, 34, .72);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(227, 28, 121, .35), rgba(36, 189, 214, .25));
}

.season-card picture,
.season-card img {
  display: block;
  width: 100%;
}

.season-card img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

@media (max-width: 700px) {
  .season-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 12px;
  }

  .season-card {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }
}

/*==============================================================
# Gala Slider
==============================================================*/

.gala-slider-section {
  background: #000;
  padding: clamp(26px, 4vw, 46px) 0;
  border-bottom: 1px solid rgba(255, 192, 34, .35);
}

.gala-heading {
  margin-bottom: 22px;
}

.gala-heading h2 {
  color: var(--pink);
}

.gala-slider {
  position: relative;
  width: 100%;
}

.gala-slider-viewport {
  overflow: hidden;
  width: 100%;
}

.gala-slider-track {
  display: flex;
  gap: 14px;
  transition: transform .65s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.gala-slide {
  flex: 0 0 calc((100% - 42px) / 4);
  min-width: 0;
}

.gala-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  border: 1px solid rgba(255, 192, 34, .75);
  border-radius: 10px;
  background: #050505;
}

.gala-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 20;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  background: rgba(0, 0, 0, .68);
  color: var(--yellow);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.gala-slider-prev {
  left: 12px;
}

.gala-slider-next {
  right: 12px;
}

.gala-slider-arrow svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.gala-slider-arrow:hover,
.gala-slider-arrow:focus-visible {
  background: var(--yellow);
  color: #000;
  transform: translateY(-50%) scale(1.06);
  outline: none;
}

@media (max-width: 1240px) {
  .gala-slide {
    flex-basis: calc((100% - 28px) / 3);
  }
}

@media (max-width: 1000px) {
  .gala-slide {
    flex-basis: calc((100% - 14px) / 2);
  }
}

@media (max-width: 700px) {
  .gala-slider-section {
    padding: 24px 0 28px;
  }

  .gala-slider-track {
    gap: 10px;
  }

  .gala-slide {
    flex-basis: 100%;
  }

  .gala-slider-arrow {
    width: 42px;
    height: 42px;
  }

  .gala-slider-prev {
    left: 8px;
  }

  .gala-slider-next {
    right: 8px;
  }
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (prefers-reduced-motion: reduce) {
  .artist-slider-track,
  .transition-slider-track,
  .gala-slider-track {
    transition: none;
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: #000;
    border-bottom: 1px solid var(--yellow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 4px;
  }

  .nav-toggle {
    display: block;
  }

    .nav-dropdown {
    width: 100%;
    position: static;
  }

  .nav-dropdown-link {
    display: block;
    padding: 12px 4px;
  }

  .nav-dropdown-menu {
    position: static !important;
    left: auto !important;
    top: auto !important;

    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    max-height: 0;
    overflow: hidden;

    margin: 0;
    padding: 0 0 0 14px;

    background: transparent;
    border: 0;
    border-radius: 0;

    opacity: 0;
    visibility: hidden;
    transform: none !important;

    transition:
      max-height .28s ease,
      opacity .22s ease,
      visibility .22s ease;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    max-height: 260px;
    margin-bottom: 10px;
    padding-top: 2px;
    padding-bottom: 6px;

    opacity: 1;
    visibility: visible;
    transform: none !important;
  }

  .nav-dropdown-menu a {
    display: block;
    width: 100%;
    padding: 7px 10px;

    background: transparent;
    border-radius: 0;

    color: var(--yellow);
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: .06em;
    white-space: normal;
  }

  .nav-dropdown-menu a:hover,
  .nav-dropdown-menu a:focus-visible {
    background: transparent;
    color: var(--cyan);
  }

/* Boutons du menu */
.site-nav .nav-ticket,
.site-nav .nav-ptitchnit {
  display: inline-flex;
  align-self: flex-start;
  width: auto;
  flex: 0 0 auto;
  margin-top: 8px;
  padding: 8px 13px;
}
}

@media (max-width: 800px) {
  .artist-description-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .artist-description-card {
    grid-template-columns: 120px 1fr;
    gap: 18px;
  }

  .artist-description-card img {
    width: 120px;
  }

  .artist-description-text h3 {
    margin-bottom: 10px;
    font-size: 28px;
  }

  .artist-description-text p {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 768px) {
  .event-intro {
    padding: 34px 14px 42px;
  }

  .intro-title {
    margin-bottom: 28px;
  }

  .event-location {
    margin-bottom: 24px;
  }

  .artists {
    margin-bottom: 12px;
  }

  .intro-highlight {
    margin: 26px 0 18px;
  }

  .season-text {
    margin-bottom: 24px;
  }

  .ticket-button {
    min-height: 46px;
    font-size: 18px;
  }

  .newsletter {
    padding: 30px 0 34px;
  }

}

@media (max-width: 700px) {
  .container {
    width: min(100% - 22px, var(--max));
  }

  .site-header {
    padding: 8px 12px;
  }

  .artist-slider {
    width: min(100% - 24px, 1180px);
  }

  .artist-slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 34px;
    line-height: 32px;
  }

  #instagram.instagram-feed {
    margin-top: 34px;
    padding: 30px 0 36px;
  }

  .instagram-container {
    width: min(100% - 28px, 1180px);
  }

  #instagram .lightwidget-widget {
    min-height: 520px;
  }

  .partners-section {
    padding: 28px 16px;
  }

  .partner-logo img {
    width: min(260px, 78vw);
  }

  .site-footer {
    padding: 20px 0 24px;
  }

  .site-footer .footer-content {
    gap: 14px;
  }

  .footer-copyright {
    font-size: 13px;
  }

  .archives-hero {
    padding-top: 24px;
    padding-bottom: 22px;
  }

  .archives-hero h1 {
    font-size: 34px;
    line-height: .9;
  }

  .archives-hero .eyebrow {
    font-size: 13px;
  }

  .archives-hero p:not(.eyebrow) {
    font-size: 14px;
  }

  .season-nav {
    margin-top: 16px;
  }

  .season-main-button {
    width: auto;
    margin-bottom: 14px;
  }

  .season-buttons-row {
    gap: 6px;
  }

  .season-buttons-row a {
    width: calc(50% - 3px);
    min-height: 30px;
    padding-inline: 6px;
    font-size: 11px;
  }

  .archive-season {
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .season-heading {
    margin-bottom: 12px;
  }

  .season-card {
    border-radius: 10px;
  }
}
/* ==========================================================
   COUNTDOWN
========================================================== */

.countdown-section {
  background: #000;
  padding: clamp(36px, 5vw, 60px) 0;
  text-align: center;
}

.countdown-title {
  margin: 0 0 28px;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 400;
  line-height: 1.3;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: clamp(12px, 2vw, 26px);
  flex-wrap: wrap;
}

.countdown-box {
  min-width: 120px;
  padding: 18px 14px;
  border: 2px solid var(--yellow);
  border-radius: 12px;
  background: rgba(255,255,255,.03);
}

.countdown-value {
  display: block;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  line-height: .9;
}

.countdown-label {
  display: block;
  margin-top: 10px;
  color: var(--cyan);
  font-family: var(--font-body);
  font-size: clamp(11px, 1vw, 15px);
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (max-width:700px){

  .countdown{
    display:grid;
    grid-template-columns:repeat(3, minmax(70px, 90px));
    justify-content:center;
    gap:10px;
  }

  .countdown-box{
    min-width:0;
    padding:10px 4px;
    border-radius:8px;
  }

  .countdown-value{
    font-size:clamp(28px,8vw,40px);
  }

  .countdown-label{
    margin-top:6px;
    font-size:9px;
    letter-spacing:.06em;
  }
}
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;
  border-radius: 50%;

  background: var(--cyan);
  color: var(--yellow);

  .back-to-top svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

  font-size: 26px;
  font-weight: 400;
  line-height: 3;
  text-decoration: none;

  opacity: 1;
  visibility: visible;

  transition: background .25s ease, color .25s ease;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--pink);
  color: var(--yellow);
}
