/* ── Fonts ── */
@font-face { font-family: 'Pitch Sans'; src: url('/fonts/pitch-sans-bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: block; }
@font-face { font-family: 'Pitch Sans'; src: url('/fonts/pitch-sans-semibold.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: block; }
@font-face { font-family: 'Space Mono'; src: url('/fonts/SpaceMono-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: block; }

/* ── Reset ── */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Pitch Sans', sans-serif;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Header blue backing (behind noise) ── */
.header-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: #1728FF;
  z-index: 9;
}

/* ── Header ── */
header {
  background: #1728FF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 98px;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav a {
  font-family: 'Pitch Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.8vw, 20px);
  color: #FBFBD9;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  text-transform: uppercase;
  transition: border-color 0.15s ease;
}

nav a:hover { border-bottom-color: #FBFBD9; }
nav a.active { border-bottom-color: #FBFBD9; }

/* ── Background ── */
body {
  min-height: 100vh;
  background:
    linear-gradient(to bottom, #1728FF 0%, #1728FF 300px, #7B7C7E 1300px, #7B7C7E 100%);
  background-attachment: scroll;
}

.bg { display: none; }

.s-blue, .s-grad-down, .s-grey { display: none; }

/* ── Noise overlay ── */
.noise {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 11;
  mix-blend-mode: overlay;
  opacity: 0.5;
}

/* ── Page content ── */
.content {
  padding-top: 100px;
  position: relative;
  z-index: 2;
  flex: 1;
}

/* ── Body link ── */
.body-link {
  color: #FBFBD9;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Lineup link ── */
.lineup-link {
  position: relative;
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

.lineup-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #FBFBD9;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lineup-link:hover::after {
  transform: scaleX(1);
}

.lineup-link:hover {
  color: #FFB320;
  transition: color 0.3s ease;
}

/* ── Section button ── */
.section-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 16px 98px 0;
  padding: 0 24px;
  height: 48px;
  background: #FFB320;
  color: #1728FF;
  font-family: 'Pitch Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 3px solid #FFB320;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.section-btn:hover {
  background: transparent;
  color: #FFB320;
}

@media (max-width: 768px) {
  .section-btn {
    margin: 16px 24px 0;
  }
}

/* ── Section title ── */
.section-title {
  font-family: 'Pitch Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #FFB320;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 48px 98px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: #FBFBD9;
  opacity: .35;
}

@media (max-width: 768px) {
  .section-title {
    padding: 32px 24px 0;
  }
}

/* ── Page title ── */
.page-title {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: clamp(36px, 10vw, 80px);
  color: #FBFBD9;
  padding: clamp(24px, 5vw, 48px) 98px 0;
  text-transform: uppercase;
  line-height: 1;
}

.page-title .title-sub {
  font-size: clamp(27px, 7.5vw, 60px);
}

@media (max-width: 768px) {
  .page-title {
    padding: clamp(24px, 5vw, 48px) 24px 0;
  }
}

/* ── Section body ── */
.section-body {
  font-family: 'Pitch Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 2.5vw, 18px);
  color: #FBFBD9;
  margin-bottom: 12px;
  padding: 12px 98px 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .section-body {
    padding: 12px 24px 0;
  }
}

/* ── FAQ sections ── */
.faq-list {
  padding: 48px 98px 80px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-section {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
  color: #FBFBD9;
}

.faq-section h2 {
  font-family: 'Pitch Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 3vw, 20px);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.faq-section h2::before {
  content: "\2022";
  color: #FFB320;
  display: inline-block;
  margin-right: 10px;
  font-weight: 700;
}

.faq-section p {
  font-family: 'Pitch Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(13px, 2.5vw, 16px);
  line-height: 1.5;
}

.faq-section p + p {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .faq-list {
    padding: 32px 24px 60px;
    gap: 14px;
  }
  .faq-section {
    padding: 18px 18px;
  }
  .faq-section h2 {
    margin-bottom: 10px;
    line-height: 1.25;
  }
  .faq-section p {
    line-height: 1.6;
  }
  .faq-section p + p {
    margin-top: 12px;
  }
}

/* ── Hamburger button (hidden on desktop) ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 4;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #FBFBD9;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* Animate to X when open */
.hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Mobile menu (body-level, above everything) ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1728FF;
  z-index: 100;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  gap: 0;
}

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

.mobile-menu a {
  font-family: 'Pitch Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #FBFBD9;
  text-decoration: none;
  text-transform: uppercase;
  padding: 14px 0;
  border-top: 1px solid rgba(251, 251, 217, 0.2);
  width: 100%;
}

.mobile-menu a:first-child { border-top: none; }
.mobile-menu a.active { text-decoration: underline; text-underline-offset: 4px; }

/* ── Mobile styles ── */
@media (max-width: 768px) {
  header {
    padding: 0 24px;
  }

  .hamburger {
    display: flex;
  }

  nav {
    display: none;
  }
}

/* ── Site footer (signup + instagram) ── */
.site-footer {
  padding: 48px 98px 64px;
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.footer-inner {
  position: relative;
}

.footer-signup {
  max-width: calc(100% - 50px);
}

.footer-paw {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 35px;
  height: auto;
  display: block;
  z-index: 3;
}

@media (max-width: 768px) {
  .footer-paw {
    display: block;
    position: static;
    transform: none;
    margin-top: 24px;
    width: 35px;
  }
  .footer-signup { max-width: 100%; }
}

.signup-label {
  font-family: 'Pitch Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #FBFBD9;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.signup-form {
  display: grid;
  grid-template-columns: 104px 1fr;
  max-width: 500px;
  border: 3px solid #FBFBD9;
}

.tickets-form-wrap {
  padding: 12px 98px 0;
}
@media (max-width: 768px) {
  .tickets-form-wrap { padding: 12px 24px 0; }
}

.signup-button {
  appearance: none;
  border: 0;
  border-right: 3px solid #FBFBD9;
  background: #FBFBD9;
  color: #1728FF;
  font-family: 'Pitch Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  height: 48px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.signup-button:hover {
  background: #1728FF;
  color: #FBFBD9;
}

.signup-input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: #FBFBD9;
  font-family: 'Pitch Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 16px;
  height: 48px;
}

.signup-input::placeholder {
  color: rgba(251, 251, 217, 0.5);
}

.mc-responses {
  max-width: 500px;
  margin-top: 10px;
  font-family: 'Pitch Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mc-responses .response {
  display: none;
  padding: 8px 0;
  color: #FBFBD9;
}

#mce-error-response {
  color: #FFB320;
}

.instagram-line {
  font-family: 'Pitch Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #FBFBD9;
  text-transform: uppercase;
  margin-top: 16px;
}

.instagram-line a {
  color: #FBFBD9;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 24px 56px;
  }

  .signup-form {
    grid-template-columns: 90px 1fr;
    max-width: none;
  }
}

.art-bullet {
  color: #FFB320;
  font-weight: 700;
  margin-right: 8px;
}

[data-page="art-department"] .content h2 {
  font-family: 'Pitch Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 5vw, 34px);
  text-transform: uppercase;
  color: #FBFBD9;
  letter-spacing: 0.02em;
  padding: 64px 98px 0;
  margin: 0;
}

@media (max-width: 768px) {
  [data-page="art-department"] .content h2 {
    padding: 48px 24px 0;
  }
}

[data-page="art-department"] .page-title {
  margin-bottom: 20px;
}
