:root {
  --paper: rgba(255, 248, 238, 0.72);
  --ink: #20150f;
  --accent: #bf3d1e;
  --accent-dark: #7d210b;
  --gold: #d6a441;
  --teal: #0f6770;
  --line: rgba(32, 21, 15, 0.12);
  --shadow: 0 24px 60px rgba(70, 32, 12, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Trebuchet MS", "Gill Sans", "Gill Sans MT", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(214, 164, 65, 0.55), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(15, 103, 112, 0.24), transparent 24%),
    linear-gradient(145deg, #f7efde 0%, #ebd7b8 45%, #cfb68e 100%);
  min-height: 100vh;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.5;
}

body::before {
  top: -10vw;
  right: -10vw;
  background: rgba(191, 61, 30, 0.18);
}

body::after {
  left: -12vw;
  bottom: -12vw;
  background: rgba(15, 103, 112, 0.16);
}

.page-shell {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(250, 241, 227, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 860px;
  padding: 20px 20px 28px;
  color: #fff4e6;
  background:
    linear-gradient(115deg, rgba(25, 14, 8, 0.4) 0%, rgba(25, 14, 8, 0.08) 48%, rgba(25, 14, 8, 0.28) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    url("./Images/Fountain.png");
  background-color: #b88f5a;
  background-size: cover, cover, cover;
  background-position: center, center, center 50%;
  background-repeat: no-repeat;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(214, 164, 65, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(10, 8, 6, 0.04), rgba(10, 8, 6, 0.12));
  pointer-events: none;
}

.topbar,
.hero-grid,
.section-heading,
.manifesto,
.merch-grid,
.issue-grid,
.contact {
  display: grid;
  gap: 20px;
}

.topbar {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 34px;
}

.wordmark,
h1,
h2,
h3,
.ticket-top,
.price,
.poll-box strong,
.slogan-box strong,
.countdown strong {
  font-family: "Arial Black", "Impact", "Haettenschweiler", sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.wordmark {
  font-size: 1rem;
  color: #fff4e6;
}

.disclaimer,
.eyebrow,
.role,
.ticket-top,
.issue-number,
.countdown-note,
.slogan-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.disclaimer {
  justify-self: end;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff8ef;
  background: rgba(20, 12, 8, 0.54);
  border: 1px solid rgba(255, 248, 239, 0.18);
}

.hero-grid {
  grid-template-columns: 1fr;
  min-height: 740px;
  align-items: end;
}

.hero-copy {
  max-width: 34rem;
  padding: 8px 4px 6px;
  padding-top: 42px;
  margin-bottom: auto;
  transform: translateY(-96px);
}

.hero-copy .eyebrow,
.hero-copy .subhead,
.hero-copy .slogan-label,
.hero-copy #slogan-output,
.hero .wordmark {
  color: #fff4e6;
}

.hero-copy .eyebrow {
  margin-top: 42px;
  margin-bottom: 14px;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .subhead,
.hero-copy .slogan-box strong {
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.42);
}

h1 {
  margin: 0;
  font-size: clamp(2.7rem, 6.2vw, 4.8rem);
  line-height: 0.9;
}

.subhead {
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.4;
  color: rgba(255, 244, 230, 0.92);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0 14px;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff7ef;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 16px 30px rgba(125, 33, 11, 0.28);
}

.btn-secondary {
  color: #fff8ef;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 248, 239, 0.24);
}

.slogan-box,
.ticket-card,
.issue-card,
.manifesto-panel,
.countdown-panel,
.merch-card {
  border: 1px solid var(--line);
  background: var(--paper);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(32, 21, 15, 0.08);
}

.slogan-box {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  max-width: 360px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(20, 12, 8, 0.34);
  border-color: rgba(255, 248, 239, 0.16);
}

.ticket-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 640px);
  padding: 10px 12px;
  margin-top: -38px;
  border-radius: 18px;
  background: rgba(255, 248, 238, 0.78);
  border-color: rgba(32, 21, 15, 0.2);
}

.ticket-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(214, 164, 65, 0.18), transparent 48%),
    repeating-linear-gradient(
      -35deg,
      rgba(255, 255, 255, 0) 0,
      rgba(255, 255, 255, 0) 18px,
      rgba(255, 255, 255, 0.18) 18px,
      rgba(255, 255, 255, 0.18) 20px
    );
  pointer-events: none;
}

.ticket-top {
  position: relative;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 0.72rem;
}

.candidate-stack {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.candidate {
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 252, 247, 0.88);
  border: 1px solid rgba(32, 21, 15, 0.14);
  color: #24150e;
}

.candidate h2 {
  margin: 4px 0;
  font-size: 1.08rem;
  color: #17100c;
}

.candidate p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.28;
}

.candidate .role {
  color: var(--accent-dark);
}

.candidate .bio {
  color: rgba(36, 21, 14, 0.88);
}

.poll-box {
  position: relative;
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(15, 103, 112, 0.2), rgba(214, 164, 65, 0.26));
  border: 1px solid rgba(32, 21, 15, 0.12);
  color: #20150f;
}

.poll-box span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  color: rgba(32, 21, 15, 0.8);
}

.poll-box strong {
  color: #18100c;
  font-size: 0.82rem;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(32, 21, 15, 0.92);
  color: #f6ead9;
}

.ticker-track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding: 14px 0;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
}

.ticker-track span::before {
  content: "*";
  margin-right: 12px;
  color: var(--gold);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.issues,
.merch,
.manifesto {
  position: relative;
  padding: 36px 24px 16px;
}

.issues,
.merch {
  display: grid;
  min-height: 680px;
  align-content: space-between;
  isolation: isolate;
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
}

.issues > *,
.merch > * {
  position: relative;
  z-index: 1;
}

.issues {
  color: #fff4e6;
  background-image:
    linear-gradient(180deg, rgba(20, 12, 8, 0.66), rgba(20, 12, 8, 0.44)),
    url("./Images/Press.png");
}

.merch {
  color: #fff4e6;
  background-image:
    linear-gradient(180deg, rgba(22, 14, 9, 0.68), rgba(22, 14, 9, 0.46)),
    url("./Images/Cash.png");
}

.issues::before,
.merch::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.issues::before {
  background:
    radial-gradient(circle at 22% 22%, rgba(214, 164, 65, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(10, 8, 6, 0.1), rgba(10, 8, 6, 0.28));
}

.merch::before {
  background:
    radial-gradient(circle at 80% 18%, rgba(214, 164, 65, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(10, 8, 6, 0.12), rgba(10, 8, 6, 0.3));
}

.issues .section-heading,
.merch .section-heading {
  width: fit-content;
  max-width: min(100%, 26rem);
  justify-self: start;
  align-self: start;
  padding: 10px 14px;
  margin-bottom: 12px;
  border-radius: 16px;
  background: rgba(18, 11, 8, 0.68);
  border: 1px solid rgba(255, 248, 239, 0.18);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.issues .eyebrow,
.issues .section-heading h2,
.merch .eyebrow,
.merch .section-heading h2 {
  color: #fff4e6;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.42);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-self: end;
  align-items: end;
  max-width: 860px;
  margin: 0 auto;
}

.issue-card {
  min-height: 138px;
  padding: 12px 13px;
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.92);
  border-color: rgba(32, 21, 15, 0.14);
  color: #1f140f;
}

.issue-card h3 {
  margin: 8px 0;
  font-size: 1rem;
  line-height: 1.05;
  color: #18100c;
}

.issue-card p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.34;
  color: rgba(31, 20, 15, 0.9);
}

.issue-number {
  color: rgba(32, 21, 15, 0.62);
}

.manifesto {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}

.manifesto-panel,
.countdown-panel {
  padding: 24px;
  border-radius: 28px;
}

blockquote {
  margin: 18px 0;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  line-height: 1.12;
  font-family: Georgia, "Times New Roman", serif;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 14px;
}

.countdown div {
  padding: 20px 14px;
  border-radius: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.52);
}

.countdown strong {
  display: block;
  font-size: clamp(2rem, 5vw, 3.3rem);
}

.countdown span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-self: end;
  align-items: end;
  max-width: 760px;
  margin: 0 auto;
}

.merch-card {
  position: relative;
  padding: 14px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 249, 242, 0.92);
  border-color: rgba(32, 21, 15, 0.14);
  color: #1f140f;
}

.merch-card::after {
  content: "";
  position: absolute;
  inset: auto -24px -28px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 164, 65, 0.38), rgba(214, 164, 65, 0));
}

.price {
  margin: 0 0 8px;
  font-size: 1.35rem;
  color: var(--accent-dark);
}

.merch-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #18100c;
}

.merch-card p {
  position: relative;
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.34;
  color: rgba(31, 20, 15, 0.9);
}

.contact {
  grid-template-columns: 0.9fr 1.1fr;
  padding: 40px 24px 28px;
  background:
    linear-gradient(145deg, rgba(32, 21, 15, 0.96), rgba(72, 28, 15, 0.9)),
    linear-gradient(180deg, rgba(214, 164, 65, 0.12), rgba(214, 164, 65, 0));
  color: #fff4e6;
}

.contact-copy {
  max-width: 28rem;
}

.contact-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-copy p {
  margin: 0;
  line-height: 1.55;
  color: rgba(255, 244, 230, 0.82);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 248, 238, 0.08);
  border: 1px solid rgba(255, 248, 239, 0.16);
  backdrop-filter: blur(8px);
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field-full {
  grid-column: 1 / -1;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 248, 239, 0.18);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  color: #fff4e6;
  background: rgba(20, 12, 8, 0.42);
}

.field textarea {
  resize: vertical;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.contact-note {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 244, 230, 0.72);
}

.site-footer {
  padding: 24px;
  background: rgba(32, 21, 15, 0.94);
}

.site-footer .topbar {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .manifesto,
  .issue-grid,
  .merch-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 720px;
  }

  .hero-grid {
    min-height: 590px;
  }

  .hero-copy {
    padding-inline: 0;
    padding-top: 34px;
    transform: translateY(-72px);
  }

  .candidate-stack {
    grid-template-columns: 1fr;
  }

  .issues,
  .merch {
    min-height: 760px;
    gap: 28px;
  }

  .issue-grid,
  .merch-grid {
    align-self: end;
    max-width: none;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 18px, 100%);
    margin: 9px auto;
    border-radius: 22px;
  }

  .hero,
  .issues,
  .merch,
  .manifesto,
  .contact {
    padding-inline: 16px;
  }

  .hero {
    min-height: 700px;
    background-position: center, center, center 46%;
  }

  .hero-grid {
    min-height: 560px;
  }

  .hero-copy {
    max-width: 20rem;
    padding-top: 28px;
    transform: translateY(-52px);
  }

  .hero-copy .eyebrow {
    margin-top: 32px;
    margin-bottom: 12px;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .subhead {
    max-width: 18rem;
    font-size: 0.9rem;
  }

  .cta-row {
    gap: 10px;
  }

  .btn {
    padding: 9px 14px;
    font-size: 0.84rem;
  }

  .slogan-box {
    max-width: 260px;
    padding: 8px 10px;
  }

  .ticket-card {
    width: min(100%, 300px);
    margin-top: -12px;
    padding: 8px 10px;
  }

  .candidate {
    padding: 8px;
  }

  .candidate h2 {
    font-size: 0.96rem;
  }

  .candidate p {
    font-size: 0.7rem;
  }

  .poll-box {
    padding: 8px 10px;
  }

  .issues,
  .merch {
    min-height: 880px;
    align-content: space-between;
    gap: 36px;
    background-position: center, center;
  }

  .issues .section-heading,
  .merch .section-heading {
    max-width: 14rem;
    padding: 8px 10px;
    border-radius: 14px;
  }

  .section-heading h2 {
    font-size: 1.08rem;
  }

  .issue-grid,
  .merch-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-self: end;
    gap: 10px;
  }

  .issue-card,
  .merch-card {
    max-width: 210px;
    min-height: auto;
    padding: 10px 11px;
    background: rgba(255, 249, 242, 0.88);
  }

  .issue-card {
    justify-self: end;
  }

  .merch-card {
    justify-self: start;
  }

  .issue-card h3,
  .merch-card h3 {
    font-size: 0.92rem;
  }

  .issue-card p,
  .merch-card p {
    font-size: 0.78rem;
  }

  .price {
    font-size: 1.2rem;
  }

  .manifesto {
    grid-template-columns: 1fr;
  }

  .countdown {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .topbar {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .disclaimer {
    justify-self: start;
  }
}
