@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Literata:opsz,wght@7..72,460;7..72,650&family=Outfit:wght@400;500;700&display=swap");

:root {
  --ink: #111111;
  --muted: #3f3f3f;
  --paper: #f7f4ee;
  --sheet: #ffffff;
  --line: #111111;
  --yellow: #ffe14a;
  --serif: "Literata", Georgia, serif;
  --display: "Archivo Black", "Arial Black", sans-serif;
  --sans: "Outfit", "Avenir Next", sans-serif;
  --wide: 1180px;
  --read: 640px;
}

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

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--serif);
  font-size: 1.125rem;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

::selection {
  background: var(--yellow);
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 40;
  padding: 8px 12px;
  color: var(--sheet);
  background: var(--ink);
  text-decoration: none;
}

.skip:focus {
  top: 12px;
}

.frame {
  width: min(calc(100% - 40px), var(--wide));
  margin-inline: auto;
}

.reading {
  width: min(calc(100% - 40px), var(--read));
  margin-inline: auto;
}

.notice-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 42px;
  padding: 8px 16px;
  color: var(--ink);
  background: var(--yellow);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.notice-bar strong {
  padding: 2px 0;
  background: transparent;
  letter-spacing: 0.16em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--sheet);
  border-bottom: 4px solid var(--ink);
}

.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), var(--wide));
  min-height: 72px;
  margin-inline: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.logo__mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--yellow);
  background: var(--ink);
}

.logo__mark svg {
  display: block;
}

.logo__words {
  display: flex;
  gap: 8px;
  align-items: baseline;
  line-height: 1;
}

.logo__name,
.logo__place {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo__place {
  color: var(--ink);
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.issue {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  font-family: var(--sans);
}

.site-nav a {
  padding: 8px 12px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  background: var(--yellow);
}

.cover {
  display: flex;
  background: var(--ink);
}

.cover__photo {
  margin: 0;
  width: 40%;
  max-width: 500px;
  flex-shrink: 0;
}

.cover__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover__sheet {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 40px 36px;
  color: var(--ink);
  background: var(--paper);
  border-left: 14px solid var(--yellow);
}

.kicker {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cover h1,
.page-intro h1,
.chapter h2,
.facts__head h2,
.offer__body h2,
.scene__copy h3,
.sound h2,
.legal-section h2,
.contact-card h2,
.about-panel h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.cover h1,
.page-intro h1 {
  margin: 0;
  font-size: clamp(2.6rem, 4.6vw, 4.6rem);
  line-height: 0.92;
}

.deck {
  max-width: 36rem;
  margin: 18px 0 0;
  font-size: 1.15rem;
}

.hero-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--ink);
  font-family: var(--sans);
}

.hero-points li {
  padding: 10px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-points li:nth-child(odd) {
  border-right: 1px solid var(--ink);
  padding-right: 12px;
}

.hero-points li:nth-child(even) {
  padding-left: 12px;
}

.byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 18px 0 0;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cover__cap,
.band-photo figcaption,
.scene figcaption,
.about-hero figcaption {
  margin: 16px 0 0;
  font-family: var(--sans);
  font-size: 0.82rem;
  line-height: 1.4;
  text-align: center;
}

.disclosure {
  width: min(calc(100% - 40px), var(--wide));
  margin: 30px auto;
  padding: 16px 0;
  border-bottom: 1px solid var(--ink);
  font-family: var(--sans);
  font-size: 0.92rem;
}

.prose p {
  margin: 0 0 1rem;
}

.prose a {
  background: var(--yellow);
  font-weight: 650;
  text-decoration: none;
}

.drop::first-letter {
  float: left;
  margin: 0.04em 0.08em 0 0;
  font-family: var(--display);
  font-size: 4.2rem;
  line-height: 0.8;
}

.chapter {
  margin-top: 2.6rem;
}

.chapter h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 0.98;
}

.scene {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  gap: 0;
  width: min(100%, var(--wide));
  margin: 48px auto;
  background: var(--sheet);
  border-block: 4px solid var(--ink);
}

.scene--flip .scene__media {
  order: 2;
}

.scene img,
.band-photo img,
.offer__media img,
.about-hero img {
  width: 100%;
  object-fit: cover;
}

.scene img {
  height: 100%;
  min-height: 320px;
  aspect-ratio: 4 / 3;
}

.scene--portrait img {
  aspect-ratio: 3 / 4;
  max-height: 640px;
}

.scene__copy {
  padding: 28px 28px 24px;
  border-left: 1px solid var(--ink);
}

.scene--flip .scene__copy {
  border-left: 0;
  border-right: 1px solid var(--ink);
}

.scene__copy h3 {
  margin: 8px 0 10px;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 0.98;
}

.scene__copy p:last-child {
  margin-bottom: 0;
}

.pull {
  width: 100%;
  margin: 28px 0;
  padding: 36px 20px;
  background: var(--yellow);
  border: 0;
}

.pull p {
  width: min(100%, 16ch);
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.pull cite {
  display: block;
  width: min(100% - 40px, var(--wide));
  margin: 16px auto 0;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sound {
  width: min(calc(100% - 40px), var(--wide));
  margin: 20px auto 40px;
  padding: 8px 0 0;
  border-top: 4px solid var(--ink);
}

.sound__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 32px;
}

.sound h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 0.95;
}

.sound__points {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sound__points li {
  padding: 12px 0;
  border-top: 1px solid var(--ink);
  font-size: 1rem;
}

.sound__points strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sound__note {
  color: var(--muted);
  font-size: 0.86rem;
}

.band-photo {
  width: 100%;
  margin: 36px 0 8px;
}

.band-photo img {
  width: 100%;
  max-height: 560px;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.band-photo figcaption,
.about-hero figcaption {
  width: min(calc(100% - 40px), var(--wide));
  margin: 10px auto 0;
}

.facts {
  margin-top: 48px;
  padding: 28px 0 12px;
  background: var(--sheet);
  border-block: 4px solid var(--ink);
}

.facts__head {
  display: block;
  margin-bottom: 8px;
}

.facts__head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 0.95;
}

.facts__head p {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.92rem;
}

.facts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}

.fact {
  padding: 16px 0;
  background: transparent;
  border-bottom: 1px solid var(--ink);
}

.fact span {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.fact strong {
  display: block;
  margin: 4px 0;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fact p {
  margin: 0;
  font-size: 0.98rem;
}

.offer {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--yellow);
  border-radius: 0;
}

.offer__media img {
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}

.offer__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 40px 36px;
}

.offer__stamp,
.offer__product,
.offer__status {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer__body h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.92;
}

.offer__specs {
  margin: 0;
  max-width: 36rem;
  font-family: var(--sans);
}

.offer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 56px;
  margin-top: 8px;
  padding: 0 18px;
  color: var(--yellow);
  background: var(--ink);
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.offer__button::after {
  content: "→";
  margin-left: 10px;
}

.offer__button:hover {
  color: var(--ink);
  background: var(--sheet);
}

.offer__fine {
  max-width: 40rem;
  margin: 4px 0 0;
  font-family: var(--sans);
  font-size: 0.78rem;
}

.dock[hidden] {
  display: none;
}

.site-footer {
  padding: 36px 0 24px;
  color: var(--ink);
  background: var(--sheet);
  border-top: 4px solid var(--ink);
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  background: var(--yellow);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink);
}

.site-footer__blurb,
.site-footer address,
.site-footer__legal {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.92rem;
}

.site-footer__blurb {
  max-width: 24rem;
  margin: 12px 0 0;
}

.site-footer__label {
  margin: 0 0 8px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__links {
  display: grid;
  gap: 6px;
  font-family: var(--sans);
}

.site-footer__legal {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  font-size: 0.8rem;
}

.site-footer__legal a {
  text-decoration: underline;
}

.site-footer__copy {
  margin: 14px 0 0;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-intro {
  padding: 42px 0 8px;
}

.page-intro p {
  max-width: 38rem;
}

.rule {
  width: 64px;
  height: 8px;
  margin: 16px 0;
  background: var(--yellow);
}

.legal-section {
  margin-top: 2rem;
}

.legal-section h2 {
  margin: 0 0 0.7rem;
  font-size: 1.4rem;
}

.legal-section a,
.contact-card a,
.about-panel a {
  background: var(--yellow);
  font-weight: 700;
  text-decoration: none;
}

.legal-section ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.legal-card,
.note-card,
.form-sheet,
.contact-card {
  margin: 0 0 1rem;
  padding: 16px 0;
  background: transparent;
  border: 0;
  border-top: 2px solid var(--ink);
  border-radius: 0;
}

.note-card {
  padding: 14px;
  background: var(--yellow);
}

.contact-grid,
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: min(calc(100% - 40px), var(--wide));
  margin: 24px auto;
}

.about-hero {
  width: 100%;
  margin: 12px 0 0;
}

.about-hero img {
  width: 100%;
  aspect-ratio: 16 / 7;
  max-height: 460px;
  object-fit: cover;
}

.about-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  width: min(calc(100% - 40px), var(--wide));
  margin: 28px auto 64px;
}

.about-panel {
  padding: 20px;
  color: var(--ink);
  background: var(--yellow);
}

.about-panel p {
  margin: 0 0 12px;
}

@media (max-width: 900px) {
  .cover,
  .scene,
  .scene--flip,
  .sound__layout,
  .facts__grid,
  .offer,
  .site-footer__grid,
  .contact-grid,
  .about-split {
    grid-template-columns: 1fr;
  }

  .cover {
    flex-direction: column;
    min-height: 0;
  }

  .cover__photo {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .site-nav a {
    font-size: 0.8rem;
  }

  .cover__photo img {
    object-position: center;
  }

  .cover__sheet {
    border-left: 0;
    border-top: 14px solid var(--yellow);
    padding: 28px 20px 24px;
  }

  .scene--flip .scene__media {
    order: 0;
  }

  .scene__copy,
  .scene--flip .scene__copy {
    border: 0;
    border-top: 1px solid var(--ink);
  }

  .issue {
    display: none;
  }

  .offer__body {
    padding: 24px 20px 28px;
  }

  .offer__button {
    width: 100%;
  }

  .dock {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    color: var(--yellow);
    background: var(--ink);
    font-family: var(--sans);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
  }

  body:has(.dock:not([hidden])) {
    padding-bottom: 76px;
  }
}

@media (max-width: 640px) {
  .frame,
  .reading,
  .disclosure,
  .pull,
  .sound,
  .site-header__inner {
    width: min(calc(100% - 28px), var(--wide));
  }

  .notice-bar {
    justify-content: flex-start;
    text-align: left;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-points li:nth-child(odd) {
    border-right: 0;
    padding-right: 0;
  }

  .hero-points li:nth-child(even) {
    padding-left: 0;
  }
}
