:root {
  --orange: #ff4c01;
  --orangedeep: #ff4d01;
  --ink: #111111;
  --paper: #ececec;
  --white: #ffffff;
  --outline: #000000;
  --shadow: rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Space Mono", monospace;
  color: var(--white);
  background: var(--white);
  overflow-x: clip;
}

.topflag {
  position: absolute;
  top: 0;
  left: 10px;
  z-index: 999;
}

.topflag img {
  width: 256px;
  height: auto;
  display: block;
  border: 0;
}

.offsetpage {
  background: var(--white);
}

.collagestage {
  position: relative;
  overflow: hidden;
  background-image: url("assets/Vector (1) 1.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center top;
  background-color: var(--white);
  min-height: clamp(760px, 118vw, 1710px);
  padding: 20px 16px 28px;
  isolation: isolate;
}

.collagestage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.16), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08), transparent 55%);
  z-index: -1;
}

.collagestage::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.16) 0.6px, transparent 0.6px),
    radial-gradient(rgba(255, 255, 255, 0.08) 0.7px, transparent 0.7px);
  background-size: 3px 3px, 4px 4px;
  background-position: 0 0, 1px 1px;
  opacity: 0.18;
  pointer-events: none;
  z-index: 3;
}

.topbar {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  width: min(1160px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 6;
}

.mainnav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.mainnav a {
  text-decoration: none;
  color: var(--white);
  background: var(--orange);
  border: 2px solid var(--outline);
  border-radius: 999px;
  padding: 6px 18px 7px;
  font-size: clamp(0.85rem, 1.4vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.mainnav a:hover {
  transform: translateY(-2px) rotate(-1deg);
  box-shadow: 0 8px 12px var(--shadow);
  background: var(--orangedeep);
}

.hero {
  width: min(1060px, 100%);
  margin: 32px auto 0;
  text-align: center;
  position: relative;
  z-index: 5;
}

.herodate {
  margin: 0;
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--paper);
  text-shadow:
    -2px -2px 0 var(--outline),
    2px -2px 0 var(--outline),
    -2px 2px 0 var(--outline),
    2px 2px 0 var(--outline);
}

.herologowrap {
  margin-top: 14px;
}

.herologo {
  width: clamp(200px, 28vw, 380px);
  transform: rotate(-3.2deg);
  filter: drop-shadow(0 8px 7px rgba(0, 0, 0, 0.24));
}

.herosubtitle {
  margin: 12px auto 0;
  max-width: 920px;
  font-size: clamp(1.2rem, 3.2vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-shadow:
    -1.5px -1.5px 0 rgba(0, 0, 0, 0.55),
    1.5px -1.5px 0 rgba(0, 0, 0, 0.55),
    -1.5px 1.5px 0 rgba(0, 0, 0, 0.55),
    1.5px 1.5px 0 rgba(0, 0, 0, 0.55);
}

.rsvpbtn {
  margin-top: 14px;
  font-family: "Space Mono", monospace;
  font-size: clamp(1.1rem, 2.8vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
  background: var(--orange);
  border: 2px solid var(--outline);
  border-radius: 999px;
  padding: 10px 36px;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.rsvpbtn:hover {
  transform: translateY(-3px) rotate(-1.2deg);
  box-shadow: 0 14px 16px rgba(0, 0, 0, 0.3);
}

.zinepreview {
  position: relative;
  width: 100%;
  margin: 58px auto 0;
  overflow: hidden;
  z-index: 5;
  perspective: 1000px;
}

.zinecarousel {
  display: flex;
  gap: 16px;
  animation: scrollZines 32s linear infinite;
  padding: 8px 0;
  transform: skewY(-1.8deg);
}

@keyframes scrollZines {
  0% {
    transform: translateX(0) skewY(-1.8deg);
  }
  100% {
    transform: translateX(-50%) skewY(-1.8deg);
  }
}

.zinecard {
  flex: 0 0 clamp(140px, 22vw, 240px);
  transition: transform 220ms ease, filter 220ms ease;
  transform-origin: center bottom;
  filter: drop-shadow(0 8px 5px rgba(0, 0, 0, 0.18));
}

.zinecard img {
  width: 100%;
  display: block;
  border-radius: 1px;
}

.zinecard:nth-child(1),
.zinecard:nth-child(5) {
  transform: rotate(-5deg) translateY(8px);
}

.zinecard:nth-child(2),
.zinecard:nth-child(6) {
  transform: rotate(-1.5deg) translateY(-2px);
}

.zinecard:nth-child(3),
.zinecard:nth-child(7) {
  transform: rotate(3deg) translateY(4px);
}

.zinecard:nth-child(4),
.zinecard:nth-child(8) {
  transform: rotate(4deg) translateY(10px);
}

.zinecard:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.015);
  filter: drop-shadow(0 14px 10px rgba(0, 0, 0, 0.25));
}

.tearseam {
  position: relative;
  margin-top: 18px;
  z-index: 4;
  line-height: 0;
}

.tearseam img {
  width: 100%;
  height: auto;
  display: block;
}

.stepsstrip {
  position: relative;
  background: var(--white);
  padding: 28px 20px 20px;
  margin-top: 8px;
}

.stepsgrid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  align-items: start;
  justify-items: center;
  gap: 18px;
}

.stepcard {
  max-width: 340px;
  transition: transform 240ms ease, filter 240ms ease;
  transform-origin: center center;
}

.stepcard img {
  width: 100%;
  display: block;
}

.step1 {
  transform: translateY(12px) rotate(-1.5deg);
}

.step2 {
  transform: translateY(-2px) rotate(1.1deg);
}

.step3 {
  transform: translateY(9px) rotate(-0.5deg);
}

.stepcard:hover {
  transform: translateY(-8px) rotate(0deg) scale(1.015);
  filter: drop-shadow(0 16px 12px rgba(0, 0, 0, 0.22));
}

.sitefooter {
  background: var(--orange);
  color: var(--paper);
  text-align: center;
  font-size: clamp(0.8rem, 1.5vw, 1.1rem);
  font-weight: 700;
  padding: 18px 12px 22px;
  line-height: 1.4;
}

.sitefooter p {
  margin: 0;
}

.sitefooter p + p {
  margin-top: 8px;
}

.sitefooter a {
  color: var(--paper);
  text-underline-offset: 4px;
}

.offsetpage .sitefooter {
  background: #ff4c01;
  color: #f3f3f3;
}

.offsetpage .sitefooter a {
  color: #f3f3f3;
}

.faqpage {
  position: relative;
  min-height: clamp(760px, 86.6vw, 1664px);
  display: flex;
  flex-direction: column;
  background-image: url("assets/Group 7.png");
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #ffffff;
}

.faqmain {
  position: relative;
  min-height: calc(100vh - 180px);
  flex: 1 0 auto;
  padding: 18px 14px 0;
}

.topbarfaq {
  width: min(1430px, 100%);
}

.faqpage .mainnav a {
  background: var(--paper);
  color: var(--outline);
}

.faqpage .mainnav a:hover {
  background: #f6f6f6;
}

.faqshell {
  width: min(1120px, 100%);
  margin: 80px auto 0;
}

.faqtitle {
  margin: 0 0 16px;
  text-align: center;
  font-family: "Bangers", cursive;
  font-size: clamp(2.2rem, 8vw, 5rem);
  letter-spacing: 0.05em;
  line-height: 0.9;
  color: #d8d8d8;
  text-shadow: 4px 5px 0 #000000;
  transform: rotate(-2deg);
}

.faqlist {
  border-top: 4px solid var(--white);
}

.faqitem {
  border-bottom: 4px solid var(--white);
}

.faqquestion {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--white);
  text-align: left;
  padding: 14px 10px;
  font-family: "Space Mono", monospace;
  font-size: clamp(1rem, 2.2vw, 1.6rem);
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faqicon {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1;
  transition: transform 220ms ease;
}

.faqanswer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}

.faqanswer p {
  margin: 0;
  padding: 0 10px 14px;
  font-size: clamp(0.8rem, 1.4vw, 0.95rem);
  max-width: 74ch;
}

.faqitem.open .faqicon {
  transform: rotate(45deg);
}

.faqitem.open .faqanswer {
  max-height: 140px;
}

.faqpage .sitefooter {
  background: #ffffff;
  color: #111111;
}

.faqpage .sitefooter a {
  color: #111111;
}

@media (max-width: 1024px) {
  .stepsgrid {
    gap: 14px;
  }

  .faqshell {
    margin-top: 70px;
  }
}

@media (max-width: 768px) {
  .topflag img {
    width: 180px;
  }

  .collagestage {
    padding: 14px 12px 20px;
    background-position: 50% top;
    background-size: cover;
    min-height: auto;
  }

  .faqpage {
    background-size: cover;
  }

  .hero {
    margin-top: 24px;
  }

  .herologo {
    width: clamp(160px, 26vw, 280px);
  }

  .zinepreview {
    margin: 18px 0 0;
  }

  .zinecarousel {
    gap: 12px;
    animation: scrollZines 28s linear infinite;
  }

  .zinecard {
    flex: 0 0 clamp(110px, 18vw, 180px);
  }

  .stepsstrip {
    padding: 20px 14px 14px;
    margin-top: 6px;
  }

  .stepsgrid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 480px;
    gap: 12px;
  }

  .sitefooter {
    padding: 14px 10px 16px;
  }

  .sitefooter p {
    font-size: 0.9rem;
  }

  .faqmain {
    padding: 12px 12px 0;
  }

  .faqshell {
    margin-top: 50px;
  }

  .faqtitle {
    margin-bottom: 12px;
  }

  .faqquestion {
    padding: 10px 8px;
  }

  .faqanswer p {
    padding: 0 8px 10px;
  }

  .faqitem.open .faqanswer {
    max-height: 120px;
  }

}

@media (max-width: 480px) {
  .topflag {
    left: 4px;
  }

  .topflag img {
    width: 120px;
  }

  .collagestage {
    padding: 10px 10px 16px;
  }

  .topbar {
    margin-top: 30px;
  }

  .mainnav {
    gap: 6px;
  }

  .mainnav a {
    padding: 5px 12px;
    font-size: 0.9rem;
  }

  .hero {
    margin-top: 16px;
  }

  .herodate {
    font-size: 1rem;
  }

  .herologo {
    width: clamp(120px, 50vw, 200px);
    margin-top: 8px;
  }

  .herologowrap {
    margin-top: 8px;
  }

  .herosubtitle {
    margin-top: 8px;
    font-size: 1.1rem;
  }

  .rsvpbtn {
    margin-top: 8px;
    padding: 7px 24px;
    font-size: 1rem;
  }

  .zinepreview {
    margin: 14px 0 0;
  }

  .zinecarousel {
    gap: 8px;
    animation: scrollZines 24s linear infinite;
  }

  .zinecard {
    flex: 0 0 clamp(90px, 20vw, 140px);
    filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.15));
  }

  .stepsstrip {
    padding: 16px 10px 8px;
    margin-top: 4px;
  }

  .stepsgrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .stepcard {
    max-width: 100%;
    width: 100%;
  }

  .stepcard img {
    border-radius: 1px;
  }

  .sitefooter {
    padding: 10px 8px 12px;
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .sitefooter p {
    margin: 4px 0 0;
  }

  .sitefooter p + p {
    margin-top: 4px;
  }

  .faqmain {
    padding: 8px 10px 0;
  }

  .faqshell {
    margin-top: 40px;
  }

  .faqtitle {
    margin-bottom: 8px;
    font-size: 2rem;
    text-shadow: 2px 3px 0 #000000;
  }

  .faqlist {
    border-top: 2px solid var(--white);
  }

  .faqitem {
    border-bottom: 2px solid var(--white);
  }

  .faqquestion {
    padding: 8px 6px;
    font-size: 1rem;
    gap: 8px;
  }

  .faqanswer p {
    padding: 0 6px 8px;
    font-size: 0.8rem;
  }

  .faqanswer {
    transition: max-height 240ms ease;
  }

  .faqitem.open .faqanswer {
    max-height: 100px;
  }

  .faqicon {
    font-size: 1.3rem;
    flex-shrink: 0;
  }

}
