/* ======================================================================
   MAIN STYLESHEET
   ====================================================================== */


:root {
  --maxw: 1800px;

  --black: #050601;
  --white: #e7eecf;
  --grey: #a1a29b;
  --grey-dim: #424536;
  --hair: rgba(231, 238, 207, 0.14);
  --hair-strong: rgba(231, 238, 207, 0.3);
  --accent: #88a80d;
  --accent2: #667e0a;
  --bg-row: #1e2308;
  --bg-row-alt: #131704;
  --text-dim: #cfdc9e;
  --line: #33391b;

  --radius: 10px;

  --display: 'Climate Crisis', 'Montserrat', serif;
  --body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}


* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

html,
body {
  overscroll-behavior-y: none;
  overscroll-behavior-x: none;
  -webkit-tap-highlight-color: transparent;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  animation: fadeInPage 1.5s ease-in-out forwards;


}

@keyframes fadeInPage {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(3, 2, 3, 0.88), rgba(3, 2, 3, 0.88)), url('assets/BACKGROUND.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

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

.squircle {
  border-radius: 30%;
}

a {
  color: inherit;
}

::selection {
  background: var(--white);
  color: var(--black);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }

  .scroll-cue {
    animation: none;
    opacity: 1;
  }

  .scroll-cue .chevron {
    animation: none;
  }

  .nav-backdrop {
    transition: none;
  }
}

/* ======================================================================
   LAYOUT UTILITIES
   ====================================================================== */

.wrap {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.footerIliya{
    margin: 0 auto;
    position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  color: var(--white);
  text-decoration: none;

  font-family: 'montserrat';
  font-size: clamp(14px, 2vw, 16px);
  letter-spacing: 0.16em;
  text-transform: uppercase;

  z-index: 0;

}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 1px solid var(--white);
  outline-offset: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

section {
  padding: 48px 0;
}

p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* ======================================================================
   NAV SECTION
   ====================================================================== */

.mobile-menu {
  display: none;
  margin: 40px 0 0;
}

header.site {
  position: absolute;
  font-weight: bold;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.nav {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  padding: 34px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
  z-index: 1;
}

.nav-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 275px;
  background: linear-gradient(180deg, rgba(3, 2, 3, 0.92) 0%, rgba(3, 2, 3, 0.55) 55%, transparent 100%);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

header.site.scrolled .nav-backdrop {
  opacity: 1;
}

header.site.scrolled {
  mix-blend-mode: normal;
}


.nav-link {
  position: relative;
  justify-self: center;

  text-decoration: none;
  font-size: clamp(1rem, 1.15%, 1.5rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: var(--white);
  opacity: 1;

  transition:
    opacity 0.25s ease,
    transform 0.15s ease;

  z-index: 0;
}


/* Underlay */
.nav-link::after {
  content: "";
  position: absolute;

  left: -14px;
  right: -14px;
  top: -8px;
  bottom: -8px;

  border-radius: 999px;

  background: rgba(136, 168, 13, 0.08);
  border: 1px solid rgba(136, 168, 13, 0.12);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  opacity: 0;
  transform: scale(0.94);

  pointer-events: none;

  z-index: -1;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}


/* Radiating glow */
.nav-link::before {
  content: "";
  position: absolute;

  left: -12px;
  right: -12px;
  top: -8px;
  bottom: -8px;

  border-radius: 999px;

  pointer-events: none;

  opacity: 0;

  z-index: -2;
}


/* Hover */
.nav-link:hover {
  opacity: 1;
    color: var(--accent);
}

.nav-link:hover::after {
  opacity: 0.5;
  transform: scale(1);
}


/* Press */
.nav-link:active {
  transform: scale(0.94);
}

.nav-link:active::after {
  opacity: 1;
  transform: scale(0.98);

  background: rgba(136, 168, 13, 0.13);
  border-color: rgba(136, 168, 13, 0.25);

  transition:
    opacity 0.08s ease,
    transform 0.08s ease;
}

.nav-link:active::before {
  animation: nav-breathe-press 0.8s ease-in-out forwards;
}


/* Noticeable breath when pressed */
@keyframes nav-breathe-press {
  0% {
    opacity: 0.8;

    box-shadow:
      0 0 7px 1px rgba(136, 168, 13, 0.25),
      0 0 16px 3px rgba(102, 126, 10, 0.12);
  }

  100% {
    opacity: 0;

    box-shadow:
      0 0 16px 3px rgba(136, 168, 13, 0),
      0 0 30px 7px rgba(102, 126, 10, 0);
  }
}

.nav-logo {
  justify-self: center;
  position: relative;
  display: inline-flex;
  border-radius: 30%;
  transition: transform 0.15s ease;
  align-items: center;
  justify-content: center;
}

.nav-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(136, 168, 13, 0.25);

  pointer-events: none;

  animation: logo-breathe 4.5s ease-in-out infinite;
}


@keyframes logo-breathe {
  0%, 100% {
    opacity: 0.45;
    transform: scale(1);

    box-shadow:
      0 0 6px 1px rgba(136, 168, 13, 0.12),
      0 0 16px 2px rgba(102, 126, 10, 0.07);
  }

  50% {
    opacity: 1;
    transform: scale(1);

    box-shadow:
      0 0 14px 2px rgba(136, 168, 13, 0.32),
      0 0 34px 7px rgba(102, 126, 10, 0.14);
  }
}


/* Press */
.nav-logo:active {
  transform: scale(0.96);
}

.nav-logo:active::after {
  animation:
    logo-breathe-press 0.8s ease-in-out forwards;
}


@keyframes logo-breathe-press {
  0% {
    opacity: 0.8;
    transform: scale(1);

    box-shadow:
      0 0 8px 1px rgba(136, 168, 13, 0.35),
      0 0 18px 3px rgba(102, 126, 10, 0.18);
  }

  100% {
    opacity: 0;
    transform: scale(1.08);

    box-shadow:
      0 0 18px 3px rgba(136, 168, 13, 0),
      0 0 35px 8px rgba(102, 126, 10, 0);
  }
}

.nav-logo img {
  height: 80px;
  width: auto;
  display: block;
}


.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  margin: 6px 0;
}


/* ======================================================================
   HERO
   ====================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 30%, #0d0c0c 0%, var(--black) 70%);
  padding: 140px 40px 120px;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 2, 3, 0.25) 0%, rgba(3, 2, 3, 0.55) 55%, var(--black) 100%), repeating-linear-gradient(100deg, rgba(255, 250, 253, 0.025) 0 1px, transparent 1px 4px);
}

.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 45%,
    rgba(0, 0, 0, 0.10) 65%,
    rgba(0, 0, 0, 0.50) 100%
  );
  pointer-events: none;
}

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

.hero-eyebrow {
  font-family: 'montserrat';
  font-weight: bold;
  font-size: clamp(13px, 2vw, 20px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 0px;
    text-shadow: 0 3px 10px var(--black);
}

h1.hero-name {
  font-family: var(--display);
  font-weight: bold;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(45px, 8vw, 110px);
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--white);
  
}

.hero-role {
  font-family: 'montserrat';
  font-weight: bold;
  font-size: clamp(14px, 2.5vw, 28px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white);
  margin: 10px 0 0;
  text-shadow: 0 3px 10px var(--black);
}

.hero-role span {
  color: var(--white);
}




.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  translate: -50% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;

  animation: scroll-cue-fade-in 1s ease forwards 1s, float-island 3.2s ease-in-out infinite 2s;

  transition:
    opacity 0.25s ease,
    transform 0.15s ease;

  z-index: 0;
  
}

.scroll-cue .chevron {
  width: 15px;
  height: 15px;
  border-right: 2.5px solid var(--white);
  border-bottom: 2.5px solid var(--white);
  transform: rotate(45deg);
}

@keyframes scroll-cue-fade-in {
  from {
    opacity: 0;
    translate: -50% 10px;
  }
  to {
    opacity: 1;
    translate: -50% 0;
  }
}

@keyframes float-island {
  0%, 100% {
    translate: -50% 0;
  }
  50% {
    translate: -50% -6px;
  }
}


/* Underlay */
.scroll-cue::after {
  content: "";
  position: absolute;

  left: -14px;
  right: -14px;
  top: -8px;
  bottom: -8px;

  border-radius: inherit;


  background: rgba(136, 168, 13, 0.08);
  border: 1px solid rgba(136, 168, 13, 0.12);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  opacity: 0.65;
  transform: scale(0.94);

  pointer-events: none;

  z-index: -1;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
    
}


/* Radiating glow */
.scroll-cue::before {
  content: "";
  position: absolute;

  left: -10px;
  right: -10px;
  top: -10px;
  bottom: -10px;

  border-radius: 999px;

  pointer-events: none;

  opacity: 0;

  z-index: -2;
}


/* Hover */
.scroll-link:hover .scroll-cue {
  opacity: 1;

}

.scroll-link:hover .scroll-cue::after {
  opacity: 0.85;
  transform: scale(1);
}


/* Press */
.scroll-link:active .scroll-cue {
  transform: scale(0.94);
}

.scroll-link:active .scroll-cue::after {
  opacity: 1;
  transform: scale(0.98);

  background: rgba(136, 168, 13, 0.13);
  border-color: rgba(136, 168, 13, 0.25);

  transition:
    opacity 0.08s ease,
    transform 0.08s ease;
}

.scroll-link:active .scroll-cue::before {
  animation: nav-breathe-press 0.8s ease-in-out forwards;
}


/* ======================================================================
   SECTION HEADERS / TITLES
   (shared "kicker" + title styles reused by About, Gigs, etc.)
   ====================================================================== */

.section-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
} 
.section-kicker .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  color: var(--grey);
}

.section-kicker .rule {
  height: 1px;
  flex: 1;
  background: var(--hair-strong);
}

.section-kicker .label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey);
  white-space: nowrap;
}

h2.title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(30px, 5vw, 58px);
  margin: 0 0 44px;
  color: var(--white);
}

.gigs-photo {
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid var(--hair);
  position: relative;
  border-radius: var(--radius);
}

.gigs-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}

.gigs-grid > div:first-child {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* ======================================================================
   MUSIC / MEDIA EMBEDS
   ====================================================================== */

.music-wrap {
  text-align: center;
}
.gigs-wrap {
  text-align: center;
}
.music-embeds {
  display: flex;
  gap: 32px;
  align-items: stretch;
  margin-top: 70px;
}

.spotify {
  flex: 1;
}

.video-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.embed-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.spotify-frame {
  position: relative;
  height: 100%;
  width: 100%;
  min-height: 600px;
}

.spotify-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video {
  aspect-ratio: 16 / 9;
}

.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* ======================================================================
   GIG CALENDAR
   ====================================================================== */

.gigs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}

.gigs-lead {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 58px);
  margin: 0 0 44px;
  color: var(--white);
}

.calendar-frame {
  border: 1px solid var(--hair);
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  margin-top: auto;
}

.calendar-embed {
  width: 100%;
  height: 700px;
}

.calendar-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/* ======================================================================
   CONTACT
   ====================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: stretch;
}

.contact-grid > .reveal {
  display: flex;
  flex-direction: column;
}

.contact-form {
  display: flex;
  background-color: rgba(255, 255, 255, 0.05);
  padding:40px;
  flex-direction: column;
  flex: 1;
  border-radius: var(--radius);
}

.contact-form .field:last-of-type {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form textarea {
  flex: 1;
  min-height: 180px;
}

.contact-form textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.05);
  
  animation: fadeInPage 0.5s ease-in-out forwards;
}

.contact-form input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.05);
  
  animation: fadeInPage 0.5s ease-in-out forwards;
}


.field {
  border-bottom: 1px solid var(--hair-strong);
  padding-bottom: 12px;
  padding-top: 12px;
}

.field label {
  display: block;
  font-family: 'montserrat';
  font-size: clamp(13px, 1.5%, 20px);
  font-weight: bold;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 10px;
}

.field input,
.field textarea {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--body);
  font-weight: 300;
  font-size: 17px;
  padding: 0;
  resize: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--grey-dim);
}

.field input:focus,
.field textarea:focus {
  outline: none;
}

.submit-line {
  position: relative;
  justify-self: center;

  display: inline-flex;
  align-items: center;
  gap: 14px;

  background: none;
  border: none;
  cursor: pointer;

  color: var(--white);
  opacity: 1;

  font-family: 'montserrat';
  font-size: clamp(15px, 1.7%, 22px);
  letter-spacing: 0.2em;
  text-transform: uppercase;

  align-self: flex-start;
  padding: 15px 14px;

  transition:
    opacity 0.25s ease,
    transform 0.15s ease;

  z-index: 0;
}


/* Underlay */
.submit-line::after {
  content: "";
  position: absolute;

  left: -3px;
  right: -3px;
  top: 3px;
  bottom: 3px;

  border-radius: 999px;

  background: rgba(136, 168, 13, 0.08);
  border: 1px solid rgba(136, 168, 13, 0.12);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  opacity: 0;
  transform: scale(0.94);

  pointer-events: none;

  z-index: -1;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}


/* Radiating glow */
.submit-line::before {
  content: "";
  position: absolute;

  left: -1px;
  right: -1px;
  top: 3px;
  bottom: 3px;

  border-radius: 999px;

  pointer-events: none;

  opacity: 0;

  z-index: -2;
}


/* Hover */
.submit-line:hover {
  opacity: 1;
  color: var(--accent);
}

.submit-line:hover::after {
  opacity: 0.5;
  transform: scale(1);
}


/* Press */
.submit-line:active {
  transform: scale(0.94);
}

.submit-line:active::after {
  opacity: 1;
  transform: scale(0.98);

  background: rgba(136, 168, 13, 0.13);
  border-color: rgba(136, 168, 13, 0.25);

  transition:
    opacity 0.08s ease,
    transform 0.08s ease;
}

.submit-line:active::before {
  animation: submit-breathe-press 0.8s ease-in-out forwards;
}


/* Noticeable breath when pressed */
@keyframes submit-breathe-press {
  0% {
    opacity: 0.8;

    box-shadow:
      0 0 7px 1px rgba(136, 168, 13, 0.25),
      0 0 16px 3px rgba(102, 126, 10, 0.12);
  }

  100% {
    opacity: 0;

    box-shadow:
      0 0 16px 3px rgba(136, 168, 13, 0),
      0 0 30px 7px rgba(102, 126, 10, 0);
  }
}

.social-list {
  display: flex;
  flex-direction: column;
}

.social-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-top: 1px solid var(--hair);
  text-decoration: none;
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--white);
}

.social-list a:last-child {
  border-bottom: 1px solid var(--hair);
}

.social-list a span {
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
}

.social-list a:hover {
  color: var(--accent);
}

.social-list-alt {
  margin-top: 36px;
}

.contact-intro {
  margin-bottom: 36px;
}


/* ======================================================================
   FOOTER
   ====================================================================== */

footer {
  padding: 20px 0 20px 0;
  text-align: center;
  border-top: 1px solid var(--hair);

}



/* ======================================================================
   RESPONSIVE / MOBILE (≤900px)
   ====================================================================== */

@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto 1fr;
  }

  .nav-link {
    display: none;
  }

  .nav-logo {
    grid-column: 1;
    justify-self: start;
  }

  .burger {
    display: block;
  }

  header.site.open {
    background: var(--black);
    mix-blend-mode: normal;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: 0;
    top: 84px;
    padding: 20px 40px;
    background: var(--black);
  }

  header.site.open .mobile-menu {
    display: flex;
  }

  .mobile-menu a {
    text-decoration: none;
    color: var(--white);
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 18px 0;
    border-top: 1px solid var(--hair);
  }

  .gigs-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .gigs-photo {
    display: none;
  }

  section {
    padding: 90px 0;
  }

  .wrap {
    padding: 0 20px;
  }

  .music-embeds {
    flex-direction: column;
  }

  .spotify-frame {
    min-height: 750px;
  }

  .calendar-embed {
    height: 100%;
  }

  .gigs-grid .contact-grid {
    align-items: center;
    text-align: center;
    position:relative;
  }


}


/* ======================================================================
   GIG WIDGET COMPONENT (start)
   ====================================================================== */

  .gigs-widget{
    background: var(--bg);
    color: var(--text);
    font-family: 'Montserrat', monospace;
    padding: 48px 20px;
    max-width: 880px;
    margin: 0 auto;
      width: 100%;
  height: 100%;
  border: 0;
  }

  .gigs-widget .gigs-header{
    display:flex;
    align-items:baseline;
    justify-content:space-between;
    gap:16px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 16px;
  }

  .gigs-widget .gigs-count{
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .gigs-widget .gigs-list{
    overflow-y: auto;
    display:flex;
    flex-direction:column;
    gap: 2px;
      width: 100%;
  height: 500px;
  }

  .gigs-widget .gig-row{
    display:grid;
    grid-template-columns: 92px 28px 1fr auto;
    align-items:center;
    gap: 0 18px;
    padding: 18px 16px;
    background: var(--bg-row);
    border-radius: var(--radius);
  }

  .gigs-widget .gig-row:nth-child(even){ background: var(--bg-row-alt); }

  .gigs-widget .gig-date{
    text-align:center;
    line-height:1;
  }

  .gigs-widget .gig-date .day{
    font-family: 'Climate Crisis', sans-serif;
    font-weight: 800;
    font-size: 34px;
    color: var(--accent);
    display:block;
  }

  .gigs-widget .gig-date .month{
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
    display:block;
    margin-top: 4px;
  }

  .gigs-widget .gig-date .weekday{
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
    display:block;
  }

  /* perforated ticket-stub divider */
  .gigs-widget .gig-perf{
    align-self: stretch;
    width: 1px;
    background-image: repeating-linear-gradient(
      to bottom,
      var(--line) 0 6px,
      transparent 6px 12px
    );
    position: relative;
  }
  .gigs-widget .gig-perf::before,
  .gigs-widget .gig-perf::after{
    content:"";
    position:absolute;
    left:50%;
    width:12px; height:12px;
    background: var(--bg);
    border-radius:50%;
    transform: translateX(-50%);
  }
  .gigs-widget .gig-perf::before{ top:-24px; }
  .gigs-widget .gig-perf::after{ bottom:-24px; }

  .gigs-widget .gig-info{ min-width:0; }

  .gigs-widget .gig-artist{
    font-family: 'Climate Crisis', sans-serif;
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin: 0 0 4px 0;
    overflow-wrap: anywhere;
  }

  .gigs-widget .gig-meta{
    font-size: 12px;
    color: var(--text-dim);
    display:flex;
    flex-wrap:wrap;
    gap: 4px 10px;
  }

  .gigs-widget .gig-meta .sep{ color: var(--line); }

  .gigs-widget .gig-cta{
    display:flex;
    justify-content:flex-end;
  }

  .gigs-widget .ticket-btn{
    font-family: 'Montserrat', monospace;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--bg);
    background: var(--accent);
    padding: 10px 16px;
    border-radius: 999px;
    white-space: nowrap;
    transition: transform 0.15s ease, background 0.15s ease;
    display:inline-block;
  }

  .gigs-widget .ticket-btn:hover{
    background: var(--text);
    transform: translateY(-1px);
  }

  .gigs-widget .ticket-btn:focus-visible,
  .gigs-widget a:focus-visible{
    outline: 2px solid var(--accent2);
    outline-offset: 2px;
  }

  .gigs-widget .sold-out{
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent2);
    border: 1px solid var(--accent2);
    padding: 9px 14px;
    border-radius: 999px;
    white-space: nowrap;
  }

  .gigs-widget .gigs-empty,
  .gigs-widget .gigs-error{
    padding: 40px 16px;
    text-align:center;
    color: var(--text-dim);
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    font-size: 13px;
    line-height: 1.6;
  }

  .gigs-widget .gigs-error a{ color: var(--accent); }

  .gigs-widget .gigs-loading{
    padding: 40px 16px;
    text-align:center;
    color: var(--text-dim);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  @media (max-width: 560px){
    .gigs-widget .gig-row{
      grid-template-columns: 60px 20px 1fr;
      grid-template-areas:
        "date perf info"
        "cta  cta  cta";
      row-gap: 14px;
    }
    .gigs-widget .gig-date{ grid-area: date; }
    .gigs-widget .gig-perf{ grid-area: perf; }
    .gigs-widget .gig-info{ grid-area: info; }
    .gigs-widget .gig-cta{ grid-area: cta; justify-content:stretch; }
    .gigs-widget .gig-date .day{ font-size: 26px; }
    .gigs-widget .ticket-btn,
    .gigs-widget .sold-out{
      display:block;
      text-align:center;
      width:100%;
      padding: 12px 16px;
    }
  }

  @media (prefers-reduced-motion: reduce){
    .gigs-widget .ticket-btn{ transition:none; }
  }


  /* BENTO */

  .gallery-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery {
  position: relative;
  width: 100%;
  height: 100%;
  flex: none;
}

.gallery__item {
  background-position: 50% 50%;
  background-size: cover;
  flex: none;
  position: relative;
}
.gallery__item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.gallery--bento {
  display: grid;
  gap: 1vh;
  grid-template-columns: repeat(3, 32.5%);
  grid-template-rows: repeat(4, 23vh);
  justify-content: center;
  align-content: center;
}

.gallery--final.gallery--bento {
  grid-template-columns: repeat(3, 100%);
  grid-template-rows: repeat(4, 49.5vh);
  gap: 1vh;
}

.gallery--bento .gallery__item:nth-child(1) {
  grid-area: 1/1/3/2;
}

.gallery--bento .gallery__item:nth-child(2) {
  grid-area: 1/2/2/3;
}

.gallery--bento .gallery__item:nth-child(3) {
  grid-area: 2/2/4/3;
}

.gallery--bento .gallery__item:nth-child(4) {
  grid-area: 1/3/3/3;
}

.gallery--bento .gallery__item:nth-child(5) {
  grid-area: 3/1/3/2;
}

.gallery--bento .gallery__item:nth-child(6) {
  grid-area: 3/3/5/4;
}

.gallery--bento .gallery__item:nth-child(7) {
  grid-area: 4/1/5/2;
}

.gallery--bento .gallery__item:nth-child(8) {
  grid-area: 4/2/5/3;
}

.section {
  padding: 2rem 5rem;
}

/* ================================
   FOOTER SIGNATURE
================================ */

.footer-mark {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 8px 10px;

  color: var(--white);
  text-decoration: none;

  font-family: 'montserrat';
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;

  opacity: 0.4;

  transition:
    color 0.25s ease,
    opacity 0.25s ease,
    transform 0.15s ease;

  z-index: 0;
}


/* Glass underlay */

.footer-mark::after {
  content: "";
  position: absolute;

  left: -8px;
  right: -8px;
  top: -5px;
  bottom: -5px;

  border-radius: 999px;

  background: rgba(136, 168, 13, 0.08);
  border: 1px solid rgba(136, 168, 13, 0.12);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  opacity: 0;
  transform: scale(0.94);

  pointer-events: none;
  z-index: -1;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}


/* Hover */

.footer-mark:hover {
  color: var(--accent);
  opacity: 1;
}

.footer-mark:hover::after {
  opacity: 0.5;
  transform: scale(1);
}


/* Press */

.footer-mark:active {
  transform: scale(0.94);
}


/* Heart */

.footer-heart {
  display: inline-block;

  animation: heartPulse 1.8s ease-in-out infinite;
}

@keyframes heartPulse {

  0%,
  100% {
    transform: scale(1);

    filter:
      drop-shadow(0 0 2px rgba(136, 168, 13, 0.2));
  }

  50% {
    transform: scale(1.25);

    filter:
      drop-shadow(0 0 7px rgba(136, 168, 13, 0.55))
      drop-shadow(0 0 14px rgba(136, 168, 13, 0.25));
  }
}


/* Text */

#footerText {
  white-space: nowrap;
}