/* =========================================================
   ALEXANDRIA MAILLOT
========================================================= */

:root {
  /* Brand palette */
  --deep-brown: #21050f;
  --faded-paper: #f2f5f7;
  --crayon-red: #ed3440;
  --dark-violet: #6624be;
  --soft-lavender: #a78ffa;
  --teal: #76cccf;

  /* Functional */
  --bg: var(--crayon-red);
  --text: var(--faded-paper);
  --text-dark: var(--deep-brown);
  --line: rgba(242, 245, 247, 0.18);
  --line-strong: rgba(242, 245, 247, 0.38);

  /* Layout */
  --site-pad: 3rem;
  --grid-gap: 2rem;
  --top-row: 8rem;
  --bottom-row: 6.5rem;
  /* --rows: var(--top-row) 1fr 1fr 1fr var(--bottom-row); */
  --rows: var(--top-row) 1fr 1fr 1fr auto;

  /* Type */
  --font-body: "Overused Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-size: 1.5rem;
  --line-height: 1.25;
  --nav-size: 1.5rem;
  --heading-size: clamp(2rem, 5vw, 5rem);

  /* Motion */
  --nav-duration: 0.45s;
  --nav-links-duration: 0.8s;
  --nav-stagger: 0.08s;
  --content-duration: 0.6s;

  /* Grid helper */
  --col-width: calc((100vw - (var(--site-pad) * 2) - (var(--grid-gap) * 4)) / 5);
}

@font-face {
  font-family: expose;
  src: url(exposure-70-.otf);
}
@font-face {
  font-family: expose-inv;
  src: url(exposure-60.otf)
}

p {
  font-size: 1.25rem;
}

h1 {
  font-size: 5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.875rem;
  text-transform: uppercase;
  line-height: 1.125;
  margin-bottom: 2rem !important;
  font-weight: 500;
}



/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--site-pad);
}

body {
  margin: 0;
  background: var(--bg);
  /* background-image: url("alexandria_maillot-background-comp.avif"); */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-body);
  /* font-size: 4rem; */
  line-height: var(--line-height);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.site-main a {
  color: inherit;
  /* text-decoration: underline; */
  /* text-underline-offset: 0.16em; */
  /* text-decoration-thickness: 1px; */
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.1rem;
  transition: all 0.4s ease;
}

.site-main a:hover {
  color: var(--deep-brown);
  transition: all 0.4s ease;
}
body.contact-active .contact-links a:hover {
  color: var(--crayon-red) !important;
}

.site-main h2 a {
  border-bottom: 3px solid currentColor;
}



/* =========================================================
   SITE SHELL
========================================================= */

.site-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--grid-gap);
  padding: var(--site-pad);
  min-height: 100vh;
  width: 100%;
  position: relative;
  z-index: 1;
}


/* =========================================================
   HOME PANEL
========================================================= */

.home-panel {
  min-height: 100vh;
  padding: var(--site-pad);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--grid-gap);
  align-items: start;
  position: relative;
  color: var(--text);
  z-index: 100;
  background-image: url("alexandria_maillot-background_image-cropped.avif");
  background-size: cover;
  /* background-position: 40% center; */
  background-repeat: no-repeat;
}

.home-logo-wrap {
  grid-column: 1 / 6;
  width: 100%;
  padding-top: 0.1rem;

  position: sticky;
  top: var(--site-pad);
  align-self: start;
  z-index: 5;

  transition: opacity 0.6s ease, transform 0.6s ease;
  transform-origin: center center;
  will-change: opacity, transform;
}


.intro-logo-svg {
  display: block;
  width: 100%;
  height: auto;
}

.scroll-dots {
  position: fixed;
  left: 50%;
  bottom: 5rem;
  transform: translateX(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 0.7;
  font-size: 3.5rem;
  color: var(--crayon-red);
  pointer-events: none;
  opacity: 0.9;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.scroll-dots span {
  display: block;
  margin: 0.15rem 0;
  animation: dotsFloat 1.4s ease-in-out infinite;
}

.scroll-dots span:nth-child(2) {
  animation-delay: 0.12s;
}

.scroll-dots span:nth-child(3) {
  animation-delay: 0.24s;
}

@keyframes dotsFloat {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  50% {
    transform: translateY(0.18rem);
    opacity: 1;
  }
}

body.scrolled .scroll-dots {
  opacity: 0;
  transform: translateX(-50%) translateY(0.5rem);
}

/* =========================================================
   INTRO LOGO TRANSITION
========================================================= */
.home-panel {
  position: relative;
}

.home-logo-wrap {
  grid-column: 1 / 6;
  width: 100%;
  padding-top: 0.1rem;

  position: sticky;
  top: 0;
  /* top: var(--site-pad); */
  align-self: start;
  z-index: 5;

  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  transform-origin: center center;
  will-change: opacity, transform;
}

body.scrolled .home-logo-wrap {
  opacity: 0;
  transform: scale(0.95) translate3d(-1rem, 0, 0);
}


/* =========================================================
   LEFT NAV
========================================================= */
.site-nav a {
  color: var(--faded-paper);
}
.site-nav a:hover {
  color: var(--faded-paper);
}

.site-nav {
  grid-column: 1 / 2;
  display: grid;
  grid-template-rows: var(--rows);
  position: sticky;
  top: var(--site-pad);
  height: calc(100vh - (var(--site-pad) * 2));
  align-items: start;
  z-index: 99;
}

.nav-row {
  display: flex;
  align-items: start;
}

.nav-logo {
  grid-row: 1;
  height: calc(100% - 3rem);
  display: flex;
  align-items: flex-start;
}

.nav-row:nth-child(2) { grid-row: 2; }
.nav-row:nth-child(3) { grid-row: 3; }
.nav-row:nth-child(4) { grid-row: 4; }
.nav-row:nth-child(5) { grid-row: 5; }

.logo-link {
  display: inline-block;
  height: 75%;
  color: var(--text);
  text-decoration: none;
  opacity: 0;
  transform: translate3d(0, 0.35rem, 0);
  transition:
    opacity var(--nav-duration) ease,
    transform var(--nav-duration) ease,
    color 0.25s ease;
}

body.scrolled .logo-link {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.logo-svg {
  height: 100%;
  width: auto;
  display: block;
}

.nav-link {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.25rem;
  line-height: 1;
  opacity: 0;
  filter: blur(0.125rem);
  transform: translate3d(0, 0.35rem, 0);
  transition:
    filter 0.25s,
    opacity var(--nav-links-duration) ease,
    transform var(--nav-links-duration) ease,
    color 0.25s ease;
}

body.scrolled .nav-row:nth-child(2) .nav-link {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: calc(0.14s + (var(--nav-stagger) * 0));
}

body.scrolled .nav-row:nth-child(3) .nav-link {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: calc(0.14s + (var(--nav-stagger) * 1));
}

body.scrolled .nav-row:nth-child(4) .nav-link {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: calc(0.14s + (var(--nav-stagger) * 2));
}

body.scrolled .nav-row:nth-child(5) .nav-link {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: calc(0.14s + (var(--nav-stagger) * 3));
}



.logo-link:hover,
.logo-link:focus-visible {
  opacity: 0.7;
  outline: none;
}
.nav-link:hover,
.nav-link:focus-visible {
  filter: blur(0);
}
.nav-link.is-active {
  filter: blur(0);
}

/* =========================================================
   MAIN CONTENT
========================================================= */

.site-main {
  grid-column: 2 / 6;
  min-width: 0;
}


/* =========================================================
   PANELS
========================================================= */

.panel {
  min-height: calc(100vh - (var(--site-pad) * 2));
  margin-top: 10.5rem;
}

.panel-grid {
  min-height: calc(100vh - (var(--site-pad) * 2));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: var(--rows);
  column-gap: var(--grid-gap);
  row-gap: 0;
  position: relative;
}

/* top-left of the 4-column content grid */
.panel-label {
  grid-column: 1 / 2;
  grid-row: 1;
  align-self: start;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: var(--nav-size);
  line-height: 1;
  padding-top: 0.1rem;
}

/* content spans full 4-column content area */
.panel-content {
  grid-column: 1 / 5;
  grid-row: 2 / 5;
  align-self: start;
  min-width: 0;
  max-width: none;
}
.panel-music .panel-grid {
  min-height: auto;
  grid-template-rows: var(--top-row) auto auto auto;
}

.panel-music .panel-content {
  grid-column: 1 / 5;
  grid-row: 2 / 3;
  align-self: start;
}

.panel-music .panel-content-2 {
  grid-column: 1 / 5;
  grid-row: 3 / 4;
  align-self: start;
}

.panel-music .panel-content-3 {
  grid-column: 1 / 5;
  grid-row: 4 / 5;
  align-self: start;
}

.panel-content-3 {
  grid-column: 1 / 5;
  grid-row: 3 / 4;
  align-self: start;
  min-width: 0;
  max-width: none;
}
.panel-content-2 {
  grid-column: 1 / 5;
  grid-row: 2 / 4;
  align-self: start;
  min-width: 0;
  max-width: none;
}
/* optional narrower text measure inside wider grid */
.panel-content-inner {
  max-width: 44rem;
}

.panel-content-wide {
  max-width: none;
}

.page-title,
.section-title {
  /* font-size: var(--heading-size); */
  /* line-height: 0.95; */
  /* font-weight: 700; */
  /* text-transform: uppercase; */
  /* letter-spacing: -0.03em; */
  /* margin-bottom: 1.5rem; */
  /* margin-top: 3rem; */
}


.intro {
  max-width: 44rem;
  margin-bottom: 1rem;
}

.panel-content:not(.panel-content-music) p + p {
  margin-top: 1rem;
}

/* =========================================================
   ABOUT GRID
========================================================= */

.panel-content-about {
  grid-column: 1 / 5;
  grid-row: 2 / 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
  align-self: start;
  min-width: 0;
}

.about-image, .music-image {
  grid-column: 1 / 2;
  align-self: start;
  border: solid var(--faded-paper) 0.125rem;
  position: sticky;
  top: 11rem;
}

.about-image img, .music-image img {
  display: block;
  width: 100%;
  height: auto;
}

.about-text {
  grid-column: 2 / 5;
  align-self: start;
  min-width: 0;
}

.about-text h3 {
  margin: 0 0 2rem 0;
}

.about-text p + p {
  margin-top: 1rem;
}

div.about-text h3 {
  text-transform: none !important;
}



/* =========================================================
   ABOUT INTRO REVEAL
========================================================= */

.panel-about .panel-label,
.panel-about .panel-content {
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity var(--content-duration) ease,
    transform var(--content-duration) ease;
}

body.scrolled .panel-about .panel-label,
body.scrolled .panel-about .panel-content {
  opacity: 1;
  transform: translateY(0);
}

body.scrolled .panel-about .panel-label {
  transition-delay: 0.12s;
}

body.scrolled .panel-about .panel-content {
  transition-delay: 0.2s;
}


/* =========================================================
   TOUR TABLE
========================================================= */
.tour-title {
  display: none !important;
}

.tour-table {
  width: 100%;
}

.tour-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--grid-gap);
  padding: 0.65rem 0;
  align-items: start;
}

.tour-head {
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 500;
  padding-bottom: 1.2rem;
}

.tour-head .tour-cell {
  white-space: nowrap;
}

.tour-cell {
  min-width: 0;
}

.tour-table #tour-rows .tour-row .tour-cell {
  font-size: 1rem;
  line-height: 1.15;
}

.tour-cell a {
  display: inline-block;
  white-space: nowrap;
}

.panel-tour .panel-content-3 {
  grid-column: 1 / 5;
  grid-row: 3 / 4;
  align-self: start;
  min-width: 0;
  max-width: none;
}

.panel-tour .panel-grid {
  min-height: auto;
  grid-template-rows: var(--top-row) auto auto auto;
}

.panel-tour .section-title {
  margin-bottom: 1rem;
}

/* tighten vertical rhythm between rows */
#tour-rows .tour-row + .tour-row {
  padding-top: 0.3rem;
}

/* optional: slightly more room on desktop */
@media (min-width: 1100px) {
  .tour-row {
    column-gap: clamp(1.5rem, 3vw, 4rem);
  }
}


/* =========================================================
   MUSIC
========================================================= */

.panel-music h2 {
  font-family: expose-inv;
  text-transform: uppercase;
  font-weight: 400;
}

.music-links, .contact-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
  width: 100%;
  text-align: left;
  /* margin-bottom: 3rem; */
  /* margin-top: 1.5rem; */
}
.music-links a {
  display: inline-block;
  width: max-content;
  }
 
.music-links a, .contact-links a {
  display: inline-block;
  min-width: 0;
  text-decoration: none;
  line-height: 1;
  justify-self: start;
  align-self: start;
}

.music-links {
  margin-bottom: 3rem;
}

.music-release + .music-release {
  margin-top: var(--grid-gap);
}

.blurred {
  filter: blur(8px);
}

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

.contact-links-sticky {
  position: fixed;
  left: 0;
  padding: var(--site-pad);
  bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--grid-gap);

  opacity: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.contact-links-sticky a:nth-child(1) { grid-column: 2; }
.contact-links-sticky a:nth-child(2) { grid-column: 3; }
.contact-links-sticky a:nth-child(3) { grid-column: 4; }
.contact-links-sticky a:nth-child(4) { grid-column: 5; }

.contact-links-sticky a {
  display: inline-block;
  width: max-content;
  justify-self: start;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.1rem;
}
.contact-links-sticky {
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.5rem);
}

body.scrolled .contact-links-sticky {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}


/* Contact Image */

.contact-bg-wrap {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.contact-bg-image {
  position: absolute;
  /* bottom: -50%; */
  top: -40%;
  width: 100vw;
  max-width: none;
  height: auto;
  opacity: 0;
  filter: blur(6px);
  will-change: opacity, filter;
  transition: opacity 0.2s linear, filter 0.2s linear;
} 

.contact-content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

/* keep content above image */
.panel-contact .panel-grid {
  position: relative;
  z-index: 1;
}

/* MAILING LIST */

.mailing-list-block {
  margin-top: 2rem;
  max-width: 100%;
}

.form-container {
  max-width: 100% !important;
  margin: 0 !important;
}

.mailing-list-intro {
  margin: 0 0 1rem;
}

.mailing-list-embed {
  width: 100%;
}

/* layout */
.mailing-list-embed form {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0.75rem !important;
  width: 100% !important;
  margin: 0 !important;
}

/* make email span full width */
.mailing-list-embed input[type="email"] {
  grid-column: 1 / -1 !important;
}

/* shared input styles */
.mailing-list-embed input[type="email"],
.mailing-list-embed input[type="text"],
.mailing-list-embed input[type="name"],
.mailing-list-embed input:not([type="submit"]) {
  width: 100% !important;
  min-width: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  border: 1px solid var(--faded-paper) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--faded-paper) !important;
  font: inherit !important;
  line-height: 1.2 !important;
  padding: 0.9rem 1rem !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
}

/* placeholders */
.mailing-list-embed input::placeholder {
  color: var(--faded-paper) !important;
  opacity: 0.75 !important;
}

/* submit button */
.mailing-list-embed button,
.mailing-list-embed input[type="submit"] {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  border: 1px solid var(--faded-paper) !important;
  border-radius: 0 !important;
  background: var(--faded-paper) !important;
  color: var(--crayon-red) !important;
  font: inherit !important;
  line-height: 1.2 !important;
  padding: 0.9rem 1.15rem !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
}

.mailing-list-embed button:hover,
.mailing-list-embed input[type="submit"]:hover {
  background: var(--deep-brown) !important;
  color: var(--faded-paper) !important;
  border-color: var(--deep-brown) !important;
}

/* focus states */
.mailing-list-embed input:focus,
.mailing-list-embed button:focus,
.mailing-list-embed input[type="submit"]:focus {
  outline: none !important;
}

/* hide EO labels */
.mailing-list-embed label {
  display: none !important;
}

/* helper / success / error text */
.mailing-list-embed p {
  margin: 0.75rem 0 0 !important;
  font-size: 0.95rem !important;
  color: var(--faded-paper) !important;
}

.mailing-list-embed .emailoctopus-success-message,
.mailing-list-embed .emailoctopus-error-message {
  display: block !important;
  margin: 0 0 1rem 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  font: inherit !important;
  font-size: 1.125rem !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
  text-align: left !important;
  color: var(--faded-paper) !important;
  opacity: 1 !important;
}
.mailing-list-embed .emailoctopus-success-message,
.mailing-list-embed .emailoctopus-success-message * {
  color: var(--faded-paper) !important;
}

.mailing-list-embed .emailoctopus-error-message,
.mailing-list-embed .emailoctopus-error-message * {
  color: var(--crayon-red) !important;
}

.form_background {
  padding: 1.75rem 1.5rem 1rem 1.5rem;
  background-color: rgba(237, 52, 64, 0.75);
}

/* mobile */
@media (max-width: 1100px) {
  .mailing-list-block {
    margin-top: 1.5rem;
    max-width: 100%;
  }

  .mailing-list-embed form {
    grid-template-columns: 1fr !important;
  }

  .mailing-list-embed input[type="email"],
  .mailing-list-embed button,
  .mailing-list-embed input[type="submit"] {
    grid-column: auto !important;
    width: 100% !important;
  }
}

/* =========================================================
   OPTIONAL GRID OVERLAY
========================================================= */

.show-grid::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image:
    linear-gradient(
      to right,
      transparent 0,
      transparent calc(var(--site-pad)),
      rgba(118, 204, 207, 0.85) calc(var(--site-pad)),
      rgba(118, 204, 207, 0.85) calc(var(--site-pad) + 1px),
      transparent calc(var(--site-pad) + 1px),
      transparent calc(var(--site-pad) + var(--col-width)),
      rgba(118, 204, 207, 0.85) calc(var(--site-pad) + var(--col-width)),
      rgba(118, 204, 207, 0.85) calc(var(--site-pad) + var(--col-width) + 1px),
      transparent calc(var(--site-pad) + var(--col-width) + 1px)
    );
  background-size: calc(var(--col-width) + var(--grid-gap)) 100%;
  background-repeat: repeat-x;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

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

  .scroll-dots span,
  .scroll-dots,
  .logo-link,
  .nav-link,
  .panel-about .panel-label,
  .panel-about .panel-content {
    animation: none;
    transition: none;
  }
}

/* =========================================================
   EPK
========================================================= */

.epk-wrap {
  padding: var(--site-pad);
}

.epk-wrap .one {
  grid-column: span 1;
}
.epk-wrap .two {
  grid-column: span 2;
}
.epk-wrap .three {
  grid-column: span 3;
}

section.epk-section {
  display: grid;
  grid-template-columns: 4fr 1fr;
  grid-gap: var(--grid-gap);
  /* margin-bottom: var(--grid-gap); */
  margin-bottom: 6rem;
}

div.epk-left {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-row: auto;
  grid-gap: var(--grid-gap);
}
div.epk-right {

}
.epk-right a {
  position: sticky;
  top: var(--grid-gap);
  transition: all 0.4s ease;
}
.epk-wrap a:hover {
  color: var(--deep-brown);
  transition: all 0.4s ease;
}

.epk-wrap a {
  color: var(--faded-paper);
  padding-bottom: 0.1rem;
  text-decoration: none;
  border-bottom: 1px solid currentcolor;
  font-size: 1rem !important;
}

.epk-wrap h2 a {
  font-size: 2.5rem !important;
  border-bottom: 3px solid currentcolor;
}

.epk-wrap img {
  border: solid var(--faded-paper) 0.125rem;
}

.live-photos .epk-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.live-photos.epk-section .epk-left {
  align-items: stretch;
}

.live-photos.epk-section .epk-left img {
  height: 100%;
}

.live-photos.epk-section .epk-left {
  grid-auto-rows: 60vh;
}


.epk-bio-image {
  position: sticky;
  top: var(--grid-gap);
}
iframe.iframe-soundcloud {
  width: 100%;
}
.epk-soundcloud {
  position: relative;
}

.epk-soundcloud::before {
  content: "▶";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--faded-paper);
  pointer-events: none;
  opacity: 0.8;
}

iframe.iframe-video {
  width: 100%;
  height: 60vh;
  border: solid var(--faded-paper) 0.125rem;
}
.epk-contact {
  margin-bottom: 3rem;
}
.epk-contact p {
  /* font-size: 1rem; */
  margin-bottom: 0.5rem;
}

.epk-wrap .bottom {
  margin-top: 6rem;
}

.epk-wrap .bottom .epk-left {
  display: inline-block;
}
.flex {
  display: flex;
}
.space-between {
  justify-content: space-between;
}

.margin-top-1 {
  margin-top: 1rem;
}
.margin-top-2 {
  margin-top: 2rem !important;
}
.margin-top-3 {
  margin-top: 3rem;
}
.margin-top-4 {
  margin-top: 4rem;
}
.margin-top-5 {
  margin-top: 5rem;
}
.margin-top-6 {
  margin-top: 6rem;
}
.epk-wrap .epk-section h2 {
  margin-bottom: 1rem !important;
}

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

@media (max-width: 1100px) {
  :root {
    --site-pad: 1.25rem;
    --grid-gap: 1rem;
    --top-row: auto;
    --bottom-row: auto;
    --nav-size: 0.95rem;
  }

  html {
    scroll-padding-top: 4.5rem;
  }

  /* INTRO / LOADING */
  .home-panel {
    background-position: 50% center;
  }

  .home-logo-wrap {
    position: static;
    top: auto;
    align-self: auto;
    width: 100%;
    max-width: 92vw;
    margin: 0 auto;
  }

  .intro-logo-svg {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .scroll-dots {
    /* position: static; */
    transform: none;
    margin-top: 0.45rem;
    font-size: 2.5rem;
    line-height: 0.55;
  }

  body.scrolled .scroll-dots {
    transform: none;
  }
  /* SITE LAYOUT */
  .site-wrap {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 var(--site-pad) var(--site-pad);
  }

  /* MOBILE TOP NAV */
  .site-nav {
    grid-column: 1 / -1;
    position: sticky;
    top: 0;
    z-index: 200;
    display: flex;
    flex-wrap: wrap;
    /* gap: 0.75rem 1.25rem; */
    align-items: center;
    padding: 1rem 0 0.9rem;
    height: auto;
    /* background: var(--bg); */
    /* border-bottom: 1px solid var(--line); */
    justify-content: space-between;
  }

  .nav-logo,
  .logo-link {
    display: none !important;
  }

  .nav-row {
    display: flex;
    align-items: center;
  }

  .nav-row:nth-child(2),
  .nav-row:nth-child(3),
  .nav-row:nth-child(4),
  .nav-row:nth-child(5) {
    grid-row: auto;
  }

  .nav-link {
    opacity: 1;
    filter: blur(0);
    transform: none;
    /* font-size: 0.95rem; */
    line-height: 1;
  }

  body.scrolled .nav-row .nav-link {
    opacity: 1;
    transform: none;
    transition-delay: 0s;
  }

  .site-main {
    grid-column: 1 / -1;
    min-width: 0;
  }

  /* PANELS */
  .panel {
    min-height: auto;
    margin-top: 4rem;
  }

  .panel-grid {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 0;
    row-gap: 1.25rem;
  }

  .panel-label {
    grid-column: 1;
    grid-row: 1;
    font-size: 0.95rem;
    padding-top: 0;
  }

  .panel-content,
  .panel-content-2,
  .panel-content-3,
  .panel-music .panel-content,
  .panel-music .panel-content-2,
  .panel-music .panel-content-3 {
    grid-column: 1;
    grid-row: auto;
  }

  /* TYPE */
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.75rem;
    
  }
  .site-main h2 a {
    border-bottom: 2px solid currentcolor !important;
}

  h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem !important;
  }

  p {
    font-size: 1.05rem;
    line-height: 1.35;
  }

  /* ABOUT / MUSIC IMAGE STACK */
  .panel-content-about {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .about-image,
  .music-image {
    grid-column: 1;
    position: static;
    top: auto;
    /* margin-bottom: 0; */
    /* max-width: 28rem; */
  }
  .music-image {
    margin-bottom: 0;
  }
  .about-image {
    margin-bottom: 2rem;
  }


  .about-text {
    grid-column: 1;
  }

  /* TOUR */
  .tour-head {
    display: none !important;
  }

  .tour-title {
    display: inline-block !important;
  }

  .tour-row {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "date city"
      "venue venue"
      "tickets tickets";
    gap: 0.5rem;
    padding-bottom: 1.5rem;
    /* border-top: 1px solid rgba(242,245,247,0.18); */
  } 

  #tour-rows .tour-row:first-child {
    border-top: 0;
  }

  .tour-cell {
    font-size: 1rem;
  }

  /* Assign grid areas */
  .tour-cell:nth-child(1) {
    grid-area: date;
    font-weight: 500;
  }

  .tour-cell:nth-child(2) {
    grid-area: city;
    text-align: right;
  }

  .tour-cell:nth-child(3) {
    grid-area: venue;
  }

  .tour-cell:nth-child(4) {
    grid-area: tickets;
  }
  .tour-cell a {
    white-space: normal;
  }




  /* MUSIC / CONTACT LINKS */
  .music-release + .music-release {
  margin-top: 3rem;
  }

  .music-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

/* CONTACT */
  .contact-links-sticky {
      display: flex;
      flex-direction: column;
      text-align: center;
      margin: 3rem auto;
      position: static;
  }
  .contact-bg-image {
    width: auto;
    height: 100vh;
    left: -15%;
    top: 0;
    }

    /* EPK PAGE */
  div.epk-left {
    display: flex;
    flex-direction: column;
  }
  .epk-bio-image {
    position: static;
    margin-bottom: 1rem;
  }
  section.epk-section {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2rem;
  }
  .mobile-hide {
    display: none !important;
  }
  .mobile-margin-bottom-3 {
    margin-bottom: 3rem !important;
  }
} 