@font-face {
  font-family: "EB Garamond Local";
  src: url("assets/EBGaramond12-Regular.ttf") format("truetype");
  font-display: swap;
}

:root {
  --ink: #101112;
  --ink-2: #17191B;
  --ivory: #F2EEE6;
  --muted: #9A9A97;
  --line: rgba(242,238,230,.14);
  --line-light: rgba(16,17,18,.12);
  --red: #C43B43;
  --orange: #D77B2E;
  --yellow: #D5B92E;
  --green: #789B62;
  --blue: #4E78B8;
  --indigo: #6653A8;
  --violet: #9558A5;
  --max: 1440px;
  --pad: clamp(22px, 4vw, 64px);
  --sans: Arial, Helvetica, sans-serif;
  --serif: "EB Garamond Local", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--pad);
}

body > header#top {
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: clamp(28px, 4vw, 54px);
  gap: 32px;
  position: relative;
  z-index: 10;
}

.logo {
  width: clamp(204px, 23.1vw, 347px);
  height: auto;
}

nav {
  display: flex;
  gap: clamp(16px, 2.2vw, 34px);
  align-items: center;
  padding-top: 8px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

nav a {
  opacity: .72;
  transition: opacity .2s ease, transform .2s ease;
}
nav a:hover { opacity: 1; transform: translateY(-1px); }

nav .nav-preview {
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid rgba(242,238,230,.85);
  border-radius: 999px;
  padding: 10px 16px;
  opacity: 1;
  font-weight: 700;
  box-shadow: 0 0 22px rgba(242,238,230,.22);
}

.hero {
  flex: 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 0 48px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  width: min(54vw, 760px);
  height: 1px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg,
    transparent 0%,
    var(--red) 14%,
    var(--orange) 28%,
    var(--yellow) 40%,
    var(--green) 52%,
    var(--blue) 64%,
    var(--indigo) 78%,
    var(--violet) 90%,
    transparent 100%);
  opacity: .52;
}

.hero-soundtrack-cta {
  display: block;
  width: 100%;
  margin: 16px auto 26px;
  text-align: center;
  color: var(--ivory);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .82;
  transition: opacity .2s ease, transform .2s ease;
}

.hero-soundtrack-cta:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.eyebrow {
  font-size: 12px;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4.3vw, 61px);
  line-height: 1.02;
  max-width: 950px;
}

.hero h1 span {
  display: block;
}

.hero p {
  margin: 30px auto 0;
  max-width: 720px;
  font-size: clamp(15px, 1.35vw, 19px);
  color: #c9c5bd;
  letter-spacing: .02em;
}

.hero-intro span {
  display: block;
}

.spectrum-words {
  margin-top: 22px;
  color: var(--muted);
  font-size: 13.8px;
  letter-spacing: .08em;
}

main {
  background: var(--ivory);
  color: var(--ink);
}

.section {
  padding: clamp(70px, 9vw, 130px) 0;
}

#read {
  padding-bottom: clamp(38px, 4vw, 58px);
}

#listen {
  padding-top: clamp(38px, 4vw, 58px);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 30px;
  margin-bottom: 42px;
}

.section-label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #686762;
}

.section-head > div:first-child > .section-label {
  margin-bottom: 10px;
}

.work-subsection-head {
  margin-top: clamp(58px, 7vw, 96px);
}

.playlist-intro {
  max-width: 820px;
  margin: 0 auto clamp(28px, 4vw, 46px);
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
  color: #55534e;
}

.playlist-intro span {
  display: inline-block;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  margin: 0;
  line-height: 1;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
  align-items: start;
}

.work-card {
  background: #e8e3d9;
  border: 1px solid rgba(16,17,18,.09);
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.work-card.square { grid-column: span 4; }
.work-card.tall { grid-column: span 4; }
.work-card.wide { grid-column: span 8; }
.work-card.spotify-card {
  grid-column: auto;
  background: #101112;
  border: 0;
  border-radius: 12px;
}

.spotify-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.placeholder-media {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 26px;
  text-align: center;
  color: #77746d;
  font-family: var(--serif);
  font-size: 28px;
  background:
    radial-gradient(circle at 20% 30%, rgba(196,59,67,.12), transparent 25%),
    radial-gradient(circle at 80% 60%, rgba(78,120,184,.13), transparent 28%),
    #e8e3d9;
}

.embed-wrap {
  background: #fff;
  width: 100%;
  min-width: 0;
  padding: 0;
  min-height: 430px;
  overflow: hidden;
}

.embed-wrap blockquote {
  margin: 0 !important;
  min-width: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

.embed-wrap iframe {
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
}

.spotify-wrap {
  background: #101112;
  width: 100%;
  height: 352px;
  border-radius: 12px;
  overflow: hidden;
}

.spotify-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
  display: block;
}

.card-meta {
  padding: 18px 18px 20px;
  background: var(--ivory);
}

.meta-kicker {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #77736b;
}

.meta-title {
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.05;
}

.meta-link {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #55534e;
}

.concepts {
  background: var(--ink);
  color: var(--ivory);
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(242,238,230,.14);
  border: 1px solid rgba(242,238,230,.14);
}

.concept {
  min-height: 270px;
  padding: 30px;
  background: var(--ink);
  transition: background .25s ease;
}

.concept:hover { background: var(--ink-2); }

.concept-number {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .14em;
}

.concept h3 {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  margin: 58px 0 12px;
}

.concept p {
  margin: 0;
  color: #b9b6af;
  max-width: 32ch;
}

.store {
  background: #e8e3d9;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.store-card {
  background: var(--ivory);
  border: 1px solid rgba(16,17,18,.1);
}

.store-art {
  aspect-ratio: 1;
  background: #ded8cd;
  overflow: hidden;
}

.store-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.store-card:hover .store-art img {
  transform: scale(1.025);
}

.store-info { padding: 18px; }
.store-info h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
}

.store-info a {
  display: inline-block;
  margin-top: 14px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #5f5d58;
}

.follow-spacer {
  min-height: 32vh;
  background: var(--ink);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 58px 24px 14px;
}

.follow-spacer > div {
  width: min(680px, 100%);
  padding: clamp(30px, 5vw, 50px);
  border: 1px solid rgba(242,238,230,.72);
  border-radius: 24px;
  box-shadow:
    0 0 28px rgba(242,238,230,.12),
    0 0 70px rgba(78,120,184,.09);
}

.follow-spacer h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 68px);
  color: var(--ivory);
}

.follow-spacer h2 span {
  display: block;
}

.follow-spacer p {
  color: var(--muted);
  max-width: 520px;
  margin: 18px auto 0;
}

.closing-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.closing-preview > span {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 23px);
}

.closing-preview button {
  border: 1px solid var(--ivory);
  border-radius: 999px;
  padding: 13px 22px;
  background: var(--ivory);
  color: var(--ink);
  font: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(242,238,230,.2);
  transition: transform .2s ease, box-shadow .2s ease;
}

.closing-preview button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(242,238,230,.32);
}

.follow-bar {
  position: fixed;
  left: 50%;
  top: 18px;
  transform: translate(-50%, -120%);
  width: min(720px, calc(100% - 28px));
  background: rgba(242,238,230,.96);
  color: var(--ink);
  border: 1px solid rgba(16,17,18,.16);
  box-shadow: 0 18px 60px rgba(0,0,0,.32);
  backdrop-filter: blur(14px);
  z-index: 50;
  transition: top .55s cubic-bezier(.2,.8,.2,1), transform .55s cubic-bezier(.2,.8,.2,1), width .45s ease, opacity .35s ease;
  opacity: 0;
}

.follow-bar.visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.follow-bar.visible.expanded {
  top: 50%;
  width: min(760px, calc(100% - 28px));
  transform: translate(-50%, -50%);
  box-shadow: 0 28px 90px rgba(0,0,0,.55);
}

.follow-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8,9,10,.64);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  z-index: 49;
}

.follow-backdrop.visible {
  opacity: 1;
}

body.reading-open {
  overflow: hidden;
}

.follow-collapsed {
  min-height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 11px 48px;
  cursor: pointer;
  position: relative;
  text-align: center;
  transition: background-color .22s ease, border-color .22s ease;
}

.follow-bar.expanded .follow-collapsed {
  background: rgba(16,17,18,.055);
  border-bottom: 1px solid rgba(16,17,18,.15);
}

.follow-bar.expanded .follow-collapsed:hover {
  background: rgba(16,17,18,.085);
}

.follow-label {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.preview-cue-mobile {
  display: none;
}

.follow-prompt {
  color: #686762;
  font-size: 12px;
}

.follow-arrow {
  color: var(--ink);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.follow-arrow:empty {
  display: none;
}

.follow-bar.expanded .follow-arrow {
  left: 18px;
  right: auto;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16,17,18,.24);
  border-radius: 50%;
  font-size: 17px;
  line-height: 1;
}

.follow-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  padding: 0 20px;
}

.follow-bar.expanded .follow-expanded {
  height: calc(100vh - 150px);
  max-height: calc(100vh - 150px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  padding: 0;
}

.follow-content-scroll {
  min-height: 0;
  overflow-y: auto;
  padding: 20px 32px 0;
}

.follow-cta {
  padding: 10px 32px 18px;
  background: rgba(232,227,217,.98);
  border-top: 1px solid rgba(16,17,18,.13);
  box-shadow: 0 -14px 28px rgba(16,17,18,.07);
}

.follow-cta .follow-copy {
  padding: 0 0 10px;
  font-size: 17px;
}

.reading-bio {
  color: #bbb8b1;
  font-size: 13px;
  line-height: 1.58;
}

.reading-bio p {
  margin: 0 0 10px;
}

.reading-kicker {
  margin-bottom: 10px;
  color: #8e8b84;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.reading-spectrum {
  width: 100%;
  height: 1px;
  margin: 22px 0 24px;
  background: linear-gradient(90deg,
    var(--red), var(--orange), var(--yellow), var(--green),
    var(--blue), var(--indigo), var(--violet));
  opacity: .48;
}

.concept-preview h2 {
  margin: 0 0 14px;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  line-height: 1;
}

.concept-preview h1 {
  margin: 0 0 14px;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 58px);
  font-weight: 400;
  line-height: 1;
}

.concept-preview p {
  margin: 0;
  color: #d0ccc4;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.48;
}

.follow-copy {
  padding: 26px 0 14px;
  color: #c5c1b9;
  font-family: var(--serif);
  font-size: 21px;
  text-align: center;
}

.follow-bar .reading-bio {
  color: #4f4e4a;
}

.follow-bar .reading-kicker {
  color: #686762;
}

.follow-bar .concept-preview h2 {
  color: var(--ink);
}

.follow-bar .concept-preview p {
  color: #343431;
}

.follow-bar .follow-copy {
  color: #343431;
}

.follow-copy > span {
  display: block;
}

.follow-copy .follow-assurance {
  max-width: 580px;
  margin: 7px auto 0;
  color: #85827b;
  font-family: var(--sans);
  font-size: 9px;
  font-style: italic;
  line-height: 1.45;
}

.follow-bar .follow-copy .follow-assurance {
  color: #77736b;
}

.follow-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.follow-form .formkit-alert {
  flex-basis: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #e8a0a5;
  font-size: 11px;
  text-align: center;
}

.follow-expanded .formkit-alert-success,
.follow-expanded [data-element="success"] {
  width: 100%;
  margin: 0 auto;
  color: var(--ink) !important;
  text-align: center;
}

.follow-form input {
  min-width: 0;
  flex: 1;
  background: rgba(242,238,230,.06);
  color: var(--ivory);
  border: 1px solid rgba(242,238,230,.18);
  padding: 13px 14px;
  outline: none;
  font: 13px var(--sans);
  box-shadow: 0 0 0 rgba(102,83,168,0);
  transition: border-color .25s ease, box-shadow .35s ease;
}

.follow-form input::placeholder { color: #77756f; }

.follow-bar .follow-form input {
  background: rgba(16,17,18,.045);
  color: var(--ink);
  border-color: rgba(16,17,18,.2);
}

.follow-form input:focus {
  border-color: rgba(149,88,165,.75);
  box-shadow:
    0 0 18px rgba(149,88,165,.22),
    0 0 34px rgba(78,120,184,.12),
    inset 0 0 12px rgba(213,185,46,.04);
}

.follow-bar .follow-form input:focus {
  border-color: rgba(196,59,67,.42);
  box-shadow:
    0 0 0 3px rgba(215,123,46,.1),
    0 0 20px rgba(213,185,46,.13),
    inset 0 0 10px rgba(196,59,67,.035);
}

.follow-form button {
  border: 0;
  background: var(--ivory);
  color: var(--ink);
  padding: 0 18px;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.follow-bar .follow-form button {
  background: var(--ink);
  color: var(--ivory);
}

.follow-bar .follow-consent {
  color: #686762;
}

.follow-consent {
  margin: 9px auto 0;
  max-width: 560px;
  color: #85827b;
  font-size: 9px;
  line-height: 1.4;
  text-align: center;
}

body > footer {
  background: var(--ink);
  color: var(--muted);
  padding: 16px var(--pad) 90px;
  text-align: center;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-logo {
  display: block;
  width: min(219px, 55vw);
  margin: 0 auto 18px;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 11px;
  margin-bottom: 22px;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242,238,230,.3);
  border-radius: 50%;
  color: var(--ivory);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.social-links a:hover {
  border-color: rgba(242,238,230,.65);
  background: rgba(242,238,230,.07);
  transform: translateY(-2px);
}

.social-links svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links .social-dot,
.social-links .social-fill {
  fill: currentColor;
  stroke: none;
}

.closing-spectrum {
  width: min(460px, 72vw);
  height: 1px;
  margin: 20px auto 18px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--red) 14%,
    var(--orange) 28%,
    var(--yellow) 40%,
    var(--green) 52%,
    var(--blue) 64%,
    var(--indigo) 78%,
    var(--violet) 90%,
    transparent 100%);
  opacity: .52;
}

body > footer p { margin: 0; }

body > footer .copyright {
  margin-top: 10px;
  letter-spacing: .04em;
  text-transform: none;
}

body.conversion-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 20%, rgba(196,59,67,.09), transparent 28%),
    radial-gradient(circle at 85% 70%, rgba(78,120,184,.11), transparent 30%),
    var(--ink);
  color: var(--ivory);
}

body.reader-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(7,10,13,.58), rgba(7,10,13,.72)),
    url("assets/pride-is-a-prison.png") center 43% / cover fixed no-repeat,
    #0c0d0e;
  color: var(--ivory);
}

.reader-page main {
  background: transparent;
  color: inherit;
}

.reader-toolbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 14px var(--pad);
  background: rgba(12,13,14,.88);
  border-bottom: 1px solid rgba(242,238,230,.1);
  backdrop-filter: blur(14px);
  color: #8e8b84;
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.reader-toolbar button {
  justify-self: end;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.reader-shell {
  min-height: calc(100svh - 44px);
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 64px) 20px;
}

.reading-document {
  width: min(780px, 100%);
  margin: 0 auto;
}

.reader-deck {
  position: relative;
  width: min(680px, 100%);
  height: min(820px, calc(100svh - 110px));
  min-height: 590px;
  padding: 1px;
  border-radius: 24px;
  background: linear-gradient(135deg,
    rgba(196,59,67,.85), rgba(213,185,46,.6),
    rgba(78,120,184,.72), rgba(149,88,165,.85));
  box-shadow:
    0 0 28px rgba(149,88,165,.14),
    0 28px 90px rgba(0,0,0,.48);
  overflow: hidden;
}

.reader-deck::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: 23px;
  background: rgba(242,238,230,.24);
  backdrop-filter: blur(4px) saturate(.9);
}

.reader-panel {
  position: absolute;
  inset: 1px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(.992);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1), visibility 0s linear .8s;
}

.reader-panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
  transition-delay: 0s;
}

.reader-intro {
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 40px;
  border-radius: 23px;
  background: rgba(242,238,230,.9);
  backdrop-filter: blur(14px) saturate(.72);
  color: var(--ink);
  text-align: center;
}

.reader-intro-mark {
  margin-bottom: 26px;
  color: #686762;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.reader-intro h1 {
  max-width: 620px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 10vw, 96px);
  font-weight: 400;
  line-height: .92;
}

.reader-enter {
  margin-top: 38px;
  padding: 14px 22px;
  border: 1px solid rgba(16,17,18,.24);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.reader-intro > p {
  margin: 22px 0 0;
  color: #77736b;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.manuscript-page {
  border-radius: 23px;
  overflow-y: auto;
  background: var(--ivory);
  scrollbar-color: rgba(16,17,18,.28) transparent;
}

.manuscript-inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(34px, 7vw, 68px);
  padding-bottom: 86px;
  border-radius: 23px;
  background:
    linear-gradient(rgba(242,238,230,.975), rgba(242,238,230,.975)),
    repeating-linear-gradient(0deg, transparent 0 27px, rgba(16,17,18,.025) 27px 28px);
  color: var(--ink);
}

.manuscript-masthead,
.manuscript-folio {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #77736b;
  font-size: 8px;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.manuscript-title {
  padding: clamp(48px, 8vw, 82px) 0 34px;
  text-align: center;
}

.manuscript-title h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 9vw, 86px);
  font-weight: 400;
  line-height: .9;
}

.manuscript-byline span {
  display: block;
}

.manuscript-byline span + span {
  margin-top: 5px;
}

.manuscript-deck {
  max-width: 520px;
  margin: 24px auto 0;
  color: #686762;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.35;
}

.manuscript-art {
  width: min(420px, 100%);
  margin: 0 auto 38px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(16,17,18,.12);
}

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

.manuscript-copy {
  max-width: 610px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.62;
}

.manuscript-copy p {
  margin: 0 0 1.15em;
}

.manuscript-copy .opening-paragraph::first-letter {
  float: left;
  margin: .08em .1em 0 0;
  font-size: 4.1em;
  line-height: .72;
}

.manuscript-copy blockquote {
  margin: 34px 0;
  padding: 4px 0 4px 24px;
  border-left: 2px solid var(--violet);
  font-size: 25px;
  line-height: 1.28;
}

.manuscript-copy h2 {
  margin: 44px 0 18px;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
}

.manuscript-continuation {
  padding-top: clamp(58px, 10vw, 110px);
}

.manuscript-folio {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(16,17,18,.14);
}

.reader-pagination {
  position: absolute;
  left: 50%;
  bottom: 13px;
  z-index: 8;
  width: min(380px, calc(100% - 38px));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(16,17,18,.12);
  border-radius: 999px;
  background: rgba(242,238,230,.93);
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  color: #686762;
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}

.reader-pagination[hidden] { display: none; }

.reader-pagination button {
  padding: 4px 6px;
  border: 0;
  background: none;
  color: var(--ink);
  cursor: pointer;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.reader-pagination button:last-child { justify-self: end; }
.reader-pagination button:disabled { opacity: .28; cursor: default; }

.reader-pagination span {
  font-size: 8px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.manuscript-end {
  margin: 28px 0;
  color: var(--violet);
  text-align: center;
}

.reader-afterword {
  max-width: 610px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid rgba(16,17,18,.12);
  text-align: center;
}

.reader-afterword p {
  margin: 8px auto 14px;
  max-width: 46ch;
  color: #686762;
  font-family: var(--serif);
  font-size: 16px;
}

.reader-afterword a {
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

@media print {
  @page { size: letter; margin: 0; }
  body.reader-page { background: #fff; }
  .reader-toolbar, .reader-intro, .reader-pagination { display: none; }
  .reader-shell { padding: 0; }
  .reading-document {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 0;
    background: none;
    overflow: visible;
  }
  .manuscript-page {
    position: relative;
    inset: auto;
    display: block;
    opacity: 1;
    visibility: visible;
    min-height: 11in;
    padding: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    overflow: visible;
    break-after: page;
  }
  .manuscript-page[data-reader-page="1"] { break-after: auto; }
  .manuscript-inner {
    min-height: 11in;
    border-radius: 0;
    padding: .65in .72in;
  }
}

.conversion-page main {
  background: transparent;
  color: inherit;
}

.conversion-shell {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(72px, 9vw, 120px) 20px 42px;
}

.conversion-back {
  width: min(720px, 100%);
  margin-bottom: 18px;
  color: #8e8b84;
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.conversion-frame {
  width: min(720px, 100%);
  height: min(760px, calc(100svh - 170px));
  padding: 1px;
  border-radius: 28px;
  background: linear-gradient(120deg,
    var(--red), var(--orange), var(--yellow), var(--green),
    var(--blue), var(--indigo), var(--violet));
  box-shadow:
    0 0 24px rgba(149,88,165,.18),
    0 0 48px rgba(78,120,184,.12),
    0 24px 90px rgba(0,0,0,.45);
}

.conversion-card {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: 27px;
  background: rgba(242,238,230,.99);
}

.conversion-scroll {
  min-height: 0;
  overflow-y: auto;
  padding: clamp(28px, 6vw, 58px) clamp(28px, 6vw, 58px) 0;
}

.conversion-cta {
  padding: 10px clamp(28px, 6vw, 58px) 24px;
  background: rgba(232,227,217,.99);
  border-top: 1px solid rgba(16,17,18,.13);
  box-shadow: 0 -16px 32px rgba(16,17,18,.09);
}

.conversion-cta .follow-copy {
  padding: 0 0 10px;
  font-size: 17px;
}

.conversion-logo {
  display: block;
  width: min(240px, 58vw);
  margin: 0 auto 42px;
}

.conversion-logo img {
  width: 100%;
}

.conversion-card .reading-bio {
  color: #4f4e4a;
  font-size: 14px;
}

.conversion-card .reading-kicker {
  color: #686762;
}

.conversion-card .concept-preview h1 {
  color: var(--ink);
}

.conversion-card .concept-preview p {
  color: #343431;
  font-size: clamp(18px, 2.5vw, 21px);
}

.conversion-card .follow-copy {
  color: #343431;
}

.conversion-card .follow-form input {
  background: rgba(16,17,18,.045);
  color: var(--ink);
  border-color: rgba(16,17,18,.2);
}

.conversion-card .follow-form input::placeholder {
  color: #77756f;
}

.conversion-card .follow-form input {
  min-height: 46px;
}

.conversion-card .follow-form button {
  min-height: 46px;
  background: var(--ink);
  color: var(--ivory);
}

.conversion-card .follow-consent {
  color: #686762;
}

.conversion-card .formkit-alert-success,
.conversion-card [data-element="success"] {
  width: 100%;
  color: var(--ink) !important;
  text-align: center;
}

/* Kit replaces the submitted form with this generated success element. */
#fe12257281.formkit-alert-success,
#fe12257281[data-element="success"] {
  width: 100%;
  color: #101112 !important;
  -webkit-text-fill-color: #101112 !important;
  text-align: center;
}

.conversion-copyright {
  margin: 24px 0 0;
  color: #686762;
  font-size: 9px;
  letter-spacing: .05em;
}

@media (max-width: 1100px) {
  .preview-cue-desktop {
    display: none;
  }
  .preview-cue-mobile {
    display: inline;
  }
  body > header#top {
    min-height: auto;
  }
  .spotify-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .work-card.square,
  .work-card.tall {
    grid-column: span 6;
  }
  .conversion-shell { padding: 42px 18px 28px; }
  .conversion-frame {
    height: auto;
    border-radius: 22px;
  }
  .conversion-card {
    height: auto;
    display: block;
    overflow: visible;
    border-radius: 21px;
  }
  .conversion-scroll {
    overflow: visible;
    padding: 34px 28px 0;
  }
  .conversion-cta { padding: 10px 28px 24px; }
  .conversion-card .follow-form input {
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  nav { gap: 14px; }
  .work-card.wide { grid-column: span 12; }
  .concept-grid, .store-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .work-card.square,
  .work-card.tall {
    grid-column: span 12;
  }
}

@media (max-width: 620px) {
  body > header#top { min-height: auto; }
  .topbar {
    align-items: center;
    justify-content: center;
  }
  nav {
    position: absolute;
    left: var(--pad);
    right: var(--pad);
    top: 92px;
    z-index: 5;
    justify-content: space-between;
    gap: 8px;
    font-size: 9px;
  }
  nav a {
    display: block;
    padding: 12px 4px;
    touch-action: manipulation;
  }
  nav .nav-preview {
    padding: 10px 12px;
    color: var(--ink);
    background: var(--ivory);
    border: 1px solid rgba(242,238,230,.85);
    border-radius: 999px;
    box-shadow: 0 0 22px rgba(242,238,230,.22);
    opacity: 1;
  }
  .hero { padding-top: 110px; }
  .hero-soundtrack-cta {
    padding: 0 8px;
    text-align: center;
  }
  .playlist-intro {
    width: 100%;
    padding: 0 8px;
    text-align: center;
  }
  .work-card.square, .work-card.tall, .work-card.wide { grid-column: span 12; }
  .spotify-grid { grid-template-columns: 1fr; }
  .follow-spacer > div {
    width: 100%;
    background: rgba(242,238,230,.035);
  }
  .closing-preview > span {
    color: var(--ivory);
    -webkit-text-fill-color: var(--ivory);
    opacity: 1;
  }
  .embed-wrap { min-height: 360px; }
  .follow-form { flex-direction: column; }
  .follow-form input {
    font-size: 16px;
  }
  .follow-form button { height: 44px; }
  .follow-bar.visible.expanded {
    top: 14px;
    left: 10px;
    right: 10px;
    width: auto;
    transform: none;
  }
  .follow-bar.expanded .follow-expanded {
    height: calc(100vh - 104px);
    max-height: calc(100vh - 104px);
    height: calc(100dvh - 104px);
    max-height: calc(100dvh - 104px);
    display: block;
    overflow-y: auto;
    padding: 0;
    -webkit-overflow-scrolling: touch;
  }
  .follow-content-scroll {
    overflow: visible;
    padding: 16px 20px 0;
  }
  .follow-cta {
    max-height: none;
    overflow: visible;
    padding: 9px 20px 14px;
  }
  .follow-cta .follow-copy { font-size: 16px; }
  .concept-preview p { font-size: 17px; }
  .conversion-shell { padding: 42px 12px 28px; }
  .conversion-frame {
    height: auto;
    border-radius: 22px;
  }
  .conversion-card {
    height: auto;
    display: block;
    overflow: visible;
    border-radius: 21px;
  }
  .conversion-scroll {
    overflow: visible;
    padding: 28px 20px 0;
  }
  .conversion-cta { padding: 10px 20px 24px; }
  .conversion-logo { margin-bottom: 32px; }
  .reader-toolbar {
    grid-template-columns: 1fr auto;
    padding: 12px 16px;
  }
  .reader-toolbar span { display: none; }
  .reader-shell { padding: 28px 10px 48px; }
  .manuscript-page {
    min-height: 0;
    border-radius: 16px;
  }
  .manuscript-inner {
    min-height: 0;
    padding: 28px 20px 24px;
    border-radius: 15px;
  }
  .manuscript-title { padding: 42px 0 28px; }
  .manuscript-title h1 { font-size: clamp(48px, 17vw, 68px); }
  .manuscript-art { aspect-ratio: 4 / 5; }
  .manuscript-copy { font-size: 17px; line-height: 1.58; }
  .manuscript-copy blockquote {
    margin: 28px 0;
    padding-left: 18px;
    font-size: 22px;
  }
  .manuscript-continuation { padding-top: 38px; }
  .manuscript-folio { padding-top: 34px; }
}
