@font-face {
  font-family: "townsppl";
  src: url("/fonts/townsppl.woff2") format("woff2");
  font-display: swap;
}

:root {
  --green: #cae5af;
  --blue: #bee5fb;
  --white: #fff;
  --panel: rgba(64, 64, 64, 0.8);
  --pixel: "townsppl", "Courier New", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html { background: #000; }

body {
  margin: 0;
  background: #000;
  color: var(--white);
  font-family: var(--pixel);
  font-size: 15px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.column {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 0 16px;
}

/* ---------- animated doodle layers (Lottie) ---------- */
.doodles {
  position: absolute;
  left: 50%;
  width: 1686px;
  height: 949px;
  margin-left: -831px; /* Wix placed these 341px left of the 980px column */
  pointer-events: none;
  z-index: 0;
}
.doodles svg { display: block; }
.doodles--a { top: 20px; width: 1663px; height: 911px; }
.doodles--b { top: 993px; }
.doodles--c { top: 1954px; }

/* ---------- hero ---------- */
.hero { text-align: center; }

.logo {
  display: block;
  width: min(960px, 100%);
  height: auto;
  margin: 328px auto 36px;
}

.tagline {
  margin: 0 0 32px;
  color: var(--green);
  font-size: 35px;
  font-weight: 400;
  line-height: 1;
}

.cover {
  display: block;
  width: min(522px, 100%);
  margin: 0 auto;
}
.cover img { display: block; width: 100%; height: auto; }

.purchase {
  display: inline-block;
  margin: 18px 0 28px;
  color: var(--blue);
  font-size: 35px;
  line-height: 1;
}

/* ---------- link sections ---------- */
.section-title {
  margin: 0;
  color: var(--green);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.05;
}

.links {
  margin: 4px 0 24px;
  padding: 0 0 0 18px;
  font-size: 20px;
  line-height: 1.4;
  list-style: none;
}
.links li { position: relative; }
.links li::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0.62em;
  width: 3px;
  height: 3px;
  background: var(--white);
}

/* ---------- about panel ---------- */
.panel {
  margin: 28px -8px 0;
  padding: 16px 22px 12px;
  background: var(--panel);
}
.panel p { margin: 0 0 1.4em; }
.panel h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.35;
}
.panel .sub { margin: 0 0 1.4em; padding: 0; list-style: none; }
.panel .green { color: var(--green); }
.panel .sub:last-child { margin-bottom: 0.4em; }

/* ---------- signup ---------- */
.signup {
  padding: 50px 0 120px;
  text-align: center;
}
.signup h2 {
  margin: 0 0 60px;
  color: var(--green);
  font-size: 26px;
  font-weight: 400;
}
.signup form {
  width: min(482px, 100%);
  margin: 0 auto;
  text-align: left;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
}
.signup .req-note { text-align: right; font-size: 11px; margin-bottom: 4px; }
.signup .asterisk { color: #e85c41; }
.signup label { display: block; margin-bottom: 3px; }
.signup input[type="email"],
.signup input[type="text"] {
  display: block;
  width: 100%;
  height: 32px;
  margin-bottom: 18px;
  padding: 0 8px;
  border: 1px solid #abb0b2;
  border-radius: 3px;
  font: inherit;
  font-size: 15px;
}
.signup button {
  height: 32px;
  padding: 0 21px;
  border: 0;
  border-radius: 4px;
  background: var(--green);
  color: #000;
  font: inherit;
  font-size: 15px;
  cursor: pointer;
}
.signup button:hover { background: #b5d696; }
.signup .hp { position: absolute; left: -5000px; }
.signup .status { min-height: 1.4em; margin-top: 12px; color: var(--green); }

/* ---------- release landing pages ---------- */
.release .logo { margin: 58px auto 14px; }
.release-title {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
}
.release-body {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 0 0 80px;
}
.release-cover {
  display: block;
  flex: 0 1 485px;
  align-self: flex-start;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.release-cover img { display: block; width: 100%; height: auto; border-radius: 3px; }
.buttons {
  display: flex;
  flex: 0 1 308px;
  flex-direction: column;
  gap: 34px;
}
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border: 1px solid transparent;
  background: var(--green);
  color: #414141;
  font-family: Avenir, "Avenir Next", "Nunito Sans", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.button:hover { border-color: #414141; background: #fff; }

.signup-page .logo { margin: 58px auto 60px; }
.signup-page .logo-link { display: block; }
.signup-page .signup { padding-top: 0; }
.signup-title {
  margin: 0 0 30px;
  color: var(--green);
  font-size: 35px;
  font-weight: 400;
}

/* ---------- photos page ---------- */
.paper {
  min-height: 100vh;
  background: #c7a982 url("/assets/paper-bg.jpg") center / cover fixed;
  color: #333;
}
.paper .column { padding-block: 30px 60px; }
.wordmark {
  display: block;
  margin: 0 0 40px;
  color: var(--white);
  font-size: clamp(56px, 12vw, 128px);
  line-height: 1;
  text-align: center;
  text-decoration: none;
}
.viewer {
  display: block;
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.08);
}
.viewer img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.thumbs button {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  opacity: 0.7;
}
.thumbs button[aria-current="true"] { border-color: #fff; opacity: 1; }
.thumbs button:hover { opacity: 1; }
.thumbs img { display: block; width: 100%; height: 100%; object-fit: cover; }
.caption { margin: 8px 0 0; font-size: 13px; text-align: center; }
.photo-note { margin: 32px 0 20px; text-align: center; }
.back { font-size: 18px; }

/* ---------- small screens ---------- */
@media (max-width: 700px) {
  .logo { margin-top: 140px; margin-bottom: 24px; }
  .tagline, .purchase { font-size: 24px; }
  .section-title { font-size: 40px; }
  .panel { margin-inline: 0; padding-inline: 14px; }
}

@media (max-width: 700px) {
  .release-title { font-size: 26px; }
  .release-body { gap: 24px; }
  .buttons { flex-basis: 100%; gap: 16px; }
  .signup-title { font-size: 26px; }
  .thumbs button { width: 56px; height: 56px; }
}
