/*
Theme Name: A Horse Named Lonesome
Theme URI: https://www.ahorsenamedlonesome.com/
Author: Weston Gardner
Description: Custom editorial launch theme for A Horse Named Lonesome by Luke Storey.
Version: 1.0.0
Requires at least: 6.4
Requires PHP: 8.0
Text Domain: ahnl
*/

:root {
  --storm-black: #0e1417;
  --storm-mid: #112233;
  --storm-teal-dark: #102a33;
  --storm-teal: #1a3d4f;
  --slate: #2c3538;
  --bone: #ece4d3;
  --amber: #d89b3c;
  --sand: #c9a86c;
  --cream: #f2e7ce;
  --ink: #161d1f;
  --content: 88rem;
  --wide: 88rem;
  --pad: clamp(1.1rem, 3vw, 2.5rem);
  --header-height: 4.5rem;
  --line-dark: rgba(242, 231, 206, 0.18);
  --line-light: rgba(22, 29, 31, 0.18);
  --text-dark-soft: rgba(22, 29, 31, 0.76);
  --text-light-soft: rgba(242, 231, 206, 0.76);
  color-scheme: dark;
  font-family: "Archivo", Arial, Helvetica, sans-serif;
}

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

html {
  min-width: 320px;
  background: var(--storm-black);
  color: var(--cream);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--storm-black);
  color: var(--cream);
  font-family: "Archivo", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--amber);
  color: var(--storm-black);
}

img,
svg {
  display: block;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

figure,
blockquote {
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

h1,
h2,
h3,
h4 {
  text-wrap: pretty;
  word-spacing: 0.04em;
}

.keep-together {
  display: inline;
  white-space: nowrap;
}

.quote-band blockquote p .keep-together {
  display: inline;
}

p {
  text-wrap: pretty;
}

cite {
  font-style: inherit;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--cream);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(14, 20, 23, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  width: min(100% - (var(--pad) * 2), var(--content));
  min-height: var(--header-height);
  margin: 0 auto;
}

.brand-mark,
.footer-brand {
  display: inline-grid;
  justify-items: start;
  color: var(--cream);
  font-size: 0.77rem;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-mark strong {
  color: var(--amber);
  font-size: 1.13rem;
}

.footer-brand strong {
  color: var(--amber);
  font-size: 1.02rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.15rem, 3vw, 2rem);
}

.primary-nav a,
.site-footer nav a {
  position: relative;
  padding: 0.5rem 0;
  color: var(--text-light-soft);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav a::after,
.site-footer nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.2rem;
  left: 0;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a.is-active,
.primary-nav a[aria-current="page"],
.site-footer nav a:hover {
  color: var(--cream);
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after,
.primary-nav a[aria-current="page"]::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
}

.header-action,
.button,
.field-row button,
.signup-form-provider .forminator-button-submit {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  border: 1px solid var(--amber);
  background: transparent;
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.header-action:hover,
.button:hover,
.field-row button:hover,
.signup-form-provider .forminator-button-submit:hover {
  border-color: var(--storm-teal);
  background: var(--storm-teal);
  color: var(--cream);
  transform: translateY(-1px);
}

.button-primary,
.field-row button,
.signup-form-provider .forminator-button-submit {
  border-color: var(--bone);
  background: var(--bone);
  color: var(--storm-black);
}

.button-light {
  border-color: var(--cream);
  color: var(--cream);
}

.menu-toggle {
  display: none;
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle-icon {
  display: grid;
  gap: 0.28rem;
  width: 1.2rem;
}

.menu-toggle-icon i {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon i:first-child {
  transform: translateY(0.145rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon i:last-child {
  transform: translateY(-0.145rem) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  background: var(--storm-black);
  clip-path: inset(0);
}

.hero-media,
.hero-scrim,
.praise-preview-media,
.quote-band-media,
.stay-close-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media {
  z-index: 0;
  background: url("assets/images/hero-liquid-swirl.jpg") center / cover no-repeat;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.035);
  will-change: transform;
}

.hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(14, 20, 23, 0.95) 0%, rgba(14, 20, 23, 0.74) 42%, rgba(14, 20, 23, 0.24) 76%, rgba(14, 20, 23, 0.4) 100%),
    linear-gradient(180deg, rgba(14, 20, 23, 0.2) 0%, rgba(14, 20, 23, 0.68) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 8rem;
  background: linear-gradient(180deg, transparent, rgba(14, 20, 23, 0.9));
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  width: min(100% - (var(--pad) * 2), var(--content));
  min-height: calc(100svh - var(--header-height));
  margin: 0 auto;
  padding: clamp(3.5rem, 6vw, 6rem) 0 4rem;
}

.hero-copy {
  max-width: 53rem;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--sand);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--storm-teal);
}

h1 {
  margin-bottom: 1.4rem;
  color: var(--cream);
  font-size: clamp(4.5rem, 5.3vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.81;
  text-transform: uppercase;
  text-shadow: 0 0.2rem 1.5rem rgba(14, 20, 23, 0.5);
}

h1 span,
h1 strong {
  display: block;
  font: inherit;
  white-space: nowrap;
}

h1 strong {
  color: var(--amber);
}

.hero-subtitle {
  max-width: 43rem;
  margin-bottom: 1.8rem;
  color: var(--cream);
  font-size: clamp(0.98rem, 1.6vw, 1.17rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.38;
  text-transform: uppercase;
  text-shadow: 0 0.12rem 0.75rem rgba(14, 20, 23, 0.68);
}

.retailer-group {
  max-width: 47rem;
  scroll-margin-top: calc(var(--header-height) + 2rem);
}

.retailer-label {
  margin-bottom: 0.7rem;
  color: var(--text-light-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.retailer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(7rem, 1fr));
  gap: 0.55rem;
}

.store-button {
  display: flex;
  height: 3.625rem;
  min-height: 3.625rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--amber);
  background: var(--amber);
  color: var(--storm-black);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.store-button:hover {
  border-color: var(--cream);
  background: var(--cream);
  transform: translateY(-2px);
}

.store-button > img {
  width: auto;
  max-width: 84%;
  max-height: 1.62rem;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(8%) sepia(9%) saturate(1437%) hue-rotate(148deg) brightness(96%) contrast(91%);
}

.store-button[data-retailer="bookshop"] > img {
  width: 95%;
  max-width: 95%;
  max-height: 2rem;
  transform: scale(1.08);
}

.store-button[data-retailer="barnes-and-noble"] > img {
  width: 100%;
  max-width: 100%;
  max-height: 1rem;
}

.store-button[data-retailer="amazon"] > img {
  width: 74%;
  max-width: 74%;
  max-height: 1.42rem;
}

.apple-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-size: 1.03rem;
  font-weight: 600;
}

.apple-lockup img {
  width: 1.05rem;
  height: 1.05rem;
  filter: brightness(0) saturate(100%) invert(8%) sepia(9%) saturate(1437%) hue-rotate(148deg) brightness(96%) contrast(91%);
}

.campaign-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem 1.2rem;
  max-width: 48rem;
  margin: 1.4rem 0 0;
  padding: 0.95rem 0;
  border-block: 1px solid rgba(216, 155, 60, 0.52);
  color: var(--sand);
  font-size: clamp(0.72rem, 0.85vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1.3;
  text-transform: uppercase;
}

.campaign-message {
  min-width: 0;
}

.campaign-message strong {
  color: var(--amber);
  font-size: clamp(0.82rem, 1vw, 0.96rem);
  font-weight: 900;
}

.campaign-publisher {
  font-size: 0.94em;
  text-align: right;
}

.hero-book {
  width: min(100%, 25rem);
  margin: 0;
  justify-self: center;
}

.book-render {
  position: relative;
  width: 100%;
  filter: drop-shadow(1.5rem 1.7rem 1.8rem rgba(14, 20, 23, 0.48));
}

.praise-preview {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--storm-mid);
  clip-path: inset(0);
}

.praise-preview-media {
  z-index: 0;
  background:
    linear-gradient(110deg, rgba(14, 20, 23, 0.97) 0%, rgba(16, 42, 51, 0.91) 52%, rgba(14, 20, 23, 0.9) 100%),
    var(--praise-background, url("assets/images/praise-cactus-wall.jpg")) center / cover no-repeat;
}

.praise-preview-media-secondary {
  background:
    linear-gradient(110deg, rgba(14, 20, 23, 0.96) 0%, rgba(17, 34, 51, 0.88) 52%, rgba(14, 20, 23, 0.94) 100%),
    var(--praise-background, url("assets/images/reviews-volcanic-steam.jpg")) center / cover no-repeat;
}

.praise-preview-inner {
  position: relative;
  z-index: 1;
  width: min(100% - (var(--pad) * 2), var(--wide));
  margin: 0 auto;
  padding: clamp(4rem, 6vw, 6rem) 0;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.arrow-link:hover {
  color: var(--cream);
}

.praise-preview-title {
  max-width: 70rem;
  margin: 0 0 clamp(2.5rem, 4vw, 3.75rem);
  color: var(--cream);
  font-size: clamp(2.75rem, 4.2vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-transform: uppercase;
}

.praise-preview-title > span {
  display: block;
  color: var(--amber);
}

.praise-preview-title-secondary {
  margin-bottom: clamp(2rem, 3vw, 3rem);
  font-size: clamp(2.5rem, 3.6vw, 3.75rem);
}

.praise-banner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.praise-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  margin: 0;
  padding: clamp(1.25rem, 2vw, 1.8rem);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(14, 20, 23, 0.46);
}

.praise-preview-secondary .praise-card {
  background: rgba(16, 42, 51, 0.56);
}

.praise-card:nth-child(even) {
  background: rgba(26, 61, 79, 0.42);
}

.endorser-photo {
  display: block;
  width: 4.5rem;
  height: 4.5rem;
  flex: 0 0 auto;
  border: 1px solid rgba(242, 231, 206, 0.42);
  border-radius: 50%;
  background: var(--storm-teal);
  object-fit: cover;
}

.praise-card blockquote p {
  margin-bottom: 2rem;
  color: var(--cream);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1rem, 1.18vw, 1.15rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.28;
}

.praise-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
}

.praise-card figcaption > span:last-child {
  display: grid;
  gap: 0.1rem;
}

.praise-card figcaption strong {
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.praise-card figcaption small {
  color: rgba(242, 231, 206, 0.76);
  font-size: 0.7rem;
  line-height: 1.4;
}

.praise-card .endorser-photo {
  width: 3.25rem;
  height: 3.25rem;
}

.section {
  padding: clamp(4rem, 6vw, 6.5rem) 0;
}

.section-inner {
  width: min(100% - (var(--pad) * 2), var(--content));
  margin: 0 auto;
}

.intro-section {
  background:
    linear-gradient(rgba(236, 228, 211, 0.8), rgba(236, 228, 211, 0.86)),
    var(--intro-background, url("assets/images/book-muqarnas-teal.jpg")) center 42% / cover no-repeat;
  color: var(--ink);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.intro-grid h2,
.split-heading h2,
.promise-heading h2,
.final-preorder h2,
.stay-close h2,
.luke-copy h2,
.page-hero h1,
.workbook-shell h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.65rem, 3.2vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.94;
  text-transform: uppercase;
}

.intro-grid h2,
.praise-preview-title,
.luke-copy h2,
.split-heading h2,
.promise-heading h2,
.final-preorder h2,
.stay-close h2 {
  word-spacing: 0.11em;
}

.editorial-copy {
  max-width: 43rem;
  color: var(--text-dark-soft);
}

.editorial-copy p {
  margin-bottom: 1.3rem;
}

.editorial-copy .editorial-lead {
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.16;
}

.luke-section {
  position: relative;
  min-height: 44rem;
  overflow: hidden;
  background: var(--storm-black);
}

.luke-image {
  position: absolute;
  inset: 0;
  background: url("assets/images/luke-story.jpg") 100% 8% / cover no-repeat;
}

.luke-inner {
  position: relative;
  display: grid;
  align-items: center;
  width: min(100% - (var(--pad) * 2), var(--content));
  min-height: 44rem;
  margin: 0 auto;
  padding: 5rem 0;
}

.luke-copy {
  max-width: 46rem;
}

.luke-copy p {
  color: var(--text-light-soft);
}

.luke-copy .luke-lead {
  color: var(--cream);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
}

.luke-copy .arrow-link {
  margin-top: 0.75rem;
}

.teachings-section {
  background:
    linear-gradient(rgba(14, 20, 23, 0.9), rgba(14, 20, 23, 0.95)),
    var(--teachings-background, url("assets/images/teachings-mandala.jpg")) center / cover no-repeat;
}

.split-heading {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: 3rem;
}

.split-heading > p {
  width: min(100%, 36rem);
  justify-self: center;
  margin-bottom: 1.8rem;
  color: var(--text-light-soft);
  text-align: center;
}

.teaching-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.teaching-card {
  min-height: 19rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(16, 42, 51, 0.82);
}

.teaching-card:nth-child(2) {
  background: rgba(17, 34, 51, 0.82);
}

.teaching-card:nth-child(3) {
  background: rgba(26, 61, 79, 0.76);
}

.card-number {
  display: block;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
  color: var(--amber);
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1;
}

.teaching-card h3 {
  margin-bottom: 0.9rem;
  color: var(--cream);
  font-size: clamp(1.35rem, 1.65vw, 1.75rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.teaching-card p {
  margin-bottom: 0;
  color: var(--text-light-soft);
}

.promise-section {
  background:
    linear-gradient(rgba(236, 228, 211, 0.8), rgba(236, 228, 211, 0.86)),
    var(--promise-background, url("assets/images/outcomes-sunset.jpg")) center 56% / cover no-repeat;
  color: var(--ink);
}

.promise-heading {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3rem;
}

.promise-heading h2 > span {
  display: block;
}

.promise-heading .eyebrow {
  padding-top: 0.5rem;
}

.promise-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.promise-list li {
  display: grid;
  grid-template-columns: 3.6rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  min-height: 0;
  padding: 1.55rem 0.4rem 1.55rem 0;
  border-bottom: 1px solid var(--line-light);
}

.promise-list li:nth-child(-n + 4) {
  grid-column: 1;
  border-right: 1px solid var(--line-light);
}

.promise-list li:nth-child(n + 5) {
  grid-column: 2;
  padding-left: 1rem;
}

.promise-list li:nth-child(1),
.promise-list li:nth-child(5) {
  grid-row: 1;
}

.promise-list li:nth-child(2),
.promise-list li:nth-child(6) {
  grid-row: 2;
}

.promise-list li:nth-child(3),
.promise-list li:nth-child(7) {
  grid-row: 3;
}

.promise-list li:nth-child(4),
.promise-list li:nth-child(8) {
  grid-row: 4;
}

.promise-list span {
  color: var(--amber);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.promise-list strong {
  max-width: none;
  font-size: clamp(1.08rem, 1.8vw, 1.36rem);
  font-weight: 800;
  line-height: 1.22;
}

.quote-band {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 64svh;
  place-items: center;
  overflow: hidden;
  background: var(--storm-black);
}

.quote-band-media {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(14, 20, 23, 0.36), rgba(14, 20, 23, 0.04), rgba(14, 20, 23, 0.28)),
    var(--quote-band-background, url("assets/images/quote-client-marbled.jpg")) center / cover no-repeat;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04);
}

.quote-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(14, 20, 23, 0.06), rgba(14, 20, 23, 0.44));
}

.quote-band-inner {
  width: min(100% - (var(--pad) * 2), var(--content));
  padding: 5rem 0;
}

.quote-band blockquote p {
  max-width: 76rem;
  margin-bottom: 1.5rem;
  color: var(--cream);
  font-size: clamp(3.25rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.86;
  text-shadow: 0 0.2rem 1.4rem rgba(14, 20, 23, 0.46);
  text-transform: uppercase;
  text-wrap: wrap;
  word-spacing: 0.06em;
}

.quote-band blockquote p span,
.quote-band blockquote p em {
  display: block;
}

.quote-band blockquote p span {
  color: var(--amber);
}

.quote-band blockquote p em {
  color: var(--cream);
  font-family: "Newsreader", Georgia, serif;
  font-size: 0.79em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: none;
}

.quote-band blockquote > cite {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  padding-left: 0.9rem;
  border-left: 2px solid var(--amber);
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stay-close {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--storm-mid);
}

.stay-close-media {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(14, 20, 23, 0.92), rgba(14, 20, 23, 0.7) 55%, rgba(14, 20, 23, 0.82)),
    var(--stay-close-background, url("assets/images/newsletter-blue-red-marble.jpg")) center / cover no-repeat;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.035);
}

.stay-close::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(14, 20, 23, 0.05), rgba(14, 20, 23, 0.52));
}

.stay-close-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.8fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-content: center;
  align-items: start;
  width: min(100% - (var(--pad) * 2), var(--content));
  min-height: 34rem;
  margin: 0 auto;
  padding: 5rem 0;
}

.stay-close h2 {
  max-width: 46rem;
  margin-bottom: 1.2rem;
}

.stay-close-inner > div > p:last-child {
  max-width: 38rem;
  margin-bottom: 0;
  color: var(--text-light-soft);
}

.stay-close-form-slot {
  align-self: center;
}

.signup-form {
  align-self: center;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid var(--line-dark);
  background: rgba(14, 20, 23, 0.76);
  backdrop-filter: blur(10px);
}

.signup-form label {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signup-form-provider .forminator-ui,
.signup-form-provider .forminator-custom-form {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.signup-form-provider .forminator-custom-form {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 0;
}

.signup-form-provider .forminator-response-message,
.signup-form-provider .forminator-error-message {
  grid-column: 1 / -1;
  margin: 0.65rem 0 0 !important;
  padding: 0.65rem 0 0 !important;
  border: 0 !important;
  border-top: 1px solid var(--line-dark) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--sand) !important;
  font-size: 0.75rem !important;
  line-height: 1.45 !important;
}

.signup-form-provider .forminator-response-message p,
.signup-form-provider .forminator-error-message {
  margin: 0 !important;
}

.signup-form-provider .forminator-row {
  min-width: 0;
  margin: 0 !important;
}

.signup-form-provider .forminator-row:not(.forminator-row-last) {
  grid-column: 1;
}

.signup-form-provider .forminator-row-last {
  grid-column: 2;
  padding-top: 23px;
}

.signup-form-provider .forminator-col,
.signup-form-provider .forminator-field {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.signup-form-provider .forminator-label {
  display: block !important;
  margin: 0 0 0.65rem !important;
  color: var(--cream) !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.signup-form-provider .forminator-required {
  color: var(--amber) !important;
}

.signup-form-provider .forminator-input {
  width: 100% !important;
  min-height: 3.5rem !important;
  margin: 0 !important;
  padding: 0 0.95rem !important;
  border: 1px solid rgba(242, 231, 206, 0.38) !important;
  border-right: 0 !important;
  border-radius: 0 !important;
  outline: 0;
  background: var(--cream) !important;
  color: var(--ink) !important;
  box-shadow: none !important;
}

.signup-form-provider .forminator-input::placeholder {
  color: rgba(22, 29, 31, 0.56) !important;
  opacity: 1;
}

.signup-form-provider .forminator-input:focus {
  position: relative;
  z-index: 1;
  border-color: var(--amber) !important;
  outline: 2px solid var(--amber);
  outline-offset: -2px;
}

.signup-form-provider .forminator-has_error .forminator-input {
  border-color: #d89b3c !important;
}

.signup-form-provider .forminator-button-submit {
  min-height: 3.5rem !important;
  margin: 0 !important;
  border-color: var(--amber);
  border-radius: 0 !important;
  background: var(--amber);
  color: var(--storm-black);
  white-space: nowrap;
}

.signup-form-provider .forminator-button-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.signup-form-provider .forminator-description,
.signup-form-provider .forminator-loading {
  grid-column: 1 / -1;
}

.field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.field-row input {
  width: 100%;
  min-height: 3.5rem;
  padding: 0 0.95rem;
  border: 1px solid rgba(242, 231, 206, 0.38);
  border-right: 0;
  border-radius: 0;
  background: var(--cream);
  color: var(--ink);
}

.field-row input::placeholder {
  color: rgba(22, 29, 31, 0.56);
}

.field-row button {
  min-height: 3.5rem;
  border-radius: 0;
}

.form-note,
.form-status {
  margin: 0.65rem 0 0;
  color: var(--text-light-soft);
  font-size: 0.72rem;
  line-height: 1.4;
}

.form-status:not(:empty) {
  padding-top: 0.6rem;
  border-top: 1px solid var(--line-dark);
  color: var(--sand);
}

.preorder-benefits {
  position: relative;
  z-index: 2;
  isolation: isolate;
  overflow: visible;
  background:
    linear-gradient(100deg, rgba(14, 20, 23, 0.92), rgba(14, 20, 23, 0.6) 58%, rgba(14, 20, 23, 0.78)),
    url("assets/images/dunes.png") center 52% / cover no-repeat;
}

.preorder-offer-layout {
  display: block;
}

.preorder-form-shell {
  position: relative;
  z-index: 3;
  scroll-margin-top: calc(var(--header-height) + 1.25rem);
  width: 100%;
  margin-top: 0;
  color: var(--cream);
}

.preorder-form-heading {
  display: block;
}

.preorder-form-heading h2 {
  margin-bottom: 0;
  color: var(--cream);
  font-size: clamp(1.45rem, 2.3vw, 2.15rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.96;
  text-transform: uppercase;
}

.preorder-tier-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(1.25rem, 2.5vw, 2.25rem);
  row-gap: 0;
  align-items: stretch;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.preorder-tier-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(242, 231, 206, 0.58);
  background: #fff;
  box-shadow: 0 1.5rem 4rem rgba(14, 20, 23, 0.34);
  color: var(--ink);
}

.preorder-tier-header {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-bottom: 1px solid rgba(22, 29, 31, 0.14);
  background:
    linear-gradient(120deg, rgba(216, 155, 60, 0.13), transparent 58%),
    var(--bone);
}

.preorder-tier-header h4 {
  margin: 0 0 0.65rem;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.preorder-tier-requirement {
  width: fit-content;
  margin: 0.8rem 0 0;
  padding: 0.4rem 0.55rem;
  background: rgba(216, 155, 60, 0.15);
  color: var(--storm-teal);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.preorder-tier-benefits {
  display: grid;
  gap: 0.65rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.preorder-tier-benefits li {
  position: relative;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-dark-soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

.preorder-tier-benefits li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--amber);
  font-weight: 900;
}

.working-title {
  color: rgba(22, 29, 31, 0.66);
  font-size: 0.92em;
}

.preorder-tier-frame {
  width: 100%;
  overflow: visible;
  background: #fff;
}

.preorder-tier-frame iframe {
  display: block;
  width: 100%;
  background: #fff;
}

.preorder-tier-one .preorder-tier-frame iframe {
  min-height: 461px;
}

.preorder-tier-two .preorder-tier-frame iframe {
  min-height: 656px;
}

.conversations-form-shell h2 {
  margin-bottom: 0.75rem;
  color: var(--ink);
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.96;
  text-transform: uppercase;
}

.prototype-form {
  color: var(--ink);
}

.preorder-prototype-form {
  padding-top: 1.15rem;
  border-top: 1px solid var(--line-light);
  margin-top: 1.15rem;
}

.prototype-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem 1.35rem;
}

.prototype-field {
  min-width: 0;
}

.prototype-field-wide {
  grid-column: 1 / -1;
}

.prototype-field label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.prototype-field input,
.prototype-field select {
  width: 100%;
  min-height: 3.5rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(22, 29, 31, 0.34);
  border-radius: 0;
  background: rgba(255, 253, 247, 0.82);
  color: var(--ink);
}

.prototype-field input::placeholder {
  color: rgba(22, 29, 31, 0.5);
}

.preorder-prototype-form .prototype-form-grid {
  gap: 0.75rem 0.9rem;
}

.preorder-prototype-form .prototype-field label {
  margin-bottom: 0.35rem;
  font-size: 0.64rem;
}

.preorder-prototype-form .prototype-field input,
.preorder-prototype-form .prototype-field select {
  min-height: 3rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.86rem;
}

.custom-select {
  position: relative;
}

.custom-select.is-open {
  z-index: 30;
}

.custom-select-trigger {
  display: none;
  width: 100%;
  min-height: 3rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(22, 29, 31, 0.34);
  border-radius: 0;
  background: rgba(255, 253, 247, 0.96);
  color: rgba(22, 29, 31, 0.58);
  font-size: 0.86rem;
  text-align: left;
  cursor: pointer;
}

.custom-select.has-value .custom-select-trigger {
  color: var(--ink);
}

.custom-select.is-ready .custom-select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

.custom-select.is-ready .custom-select-trigger {
  display: flex;
}

.custom-select-arrow {
  flex: 0 0 auto;
  width: 0.55rem;
  height: 0.55rem;
  margin: -0.25rem 0.15rem 0 0;
  border-right: 2px solid var(--storm-teal);
  border-bottom: 2px solid var(--storm-teal);
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.custom-select.is-open .custom-select-arrow {
  margin-top: 0.2rem;
  transform: rotate(225deg);
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  left: 0;
  z-index: 20;
  display: none;
  max-height: 15rem;
  overflow-y: auto;
  border: 1px solid rgba(22, 29, 31, 0.3);
  background: #fffdf7;
  box-shadow: 0 1rem 2.25rem rgba(14, 20, 23, 0.24);
}

.custom-select.is-open .custom-select-menu {
  display: block;
}

.custom-select-option {
  padding: 0.72rem 0.8rem;
  border-bottom: 1px solid rgba(22, 29, 31, 0.1);
  background: #fffdf7;
  color: var(--ink);
  font-size: 0.84rem;
  line-height: 1.3;
  cursor: pointer;
}

.custom-select-option:last-child {
  border-bottom: 0;
}

.custom-select-option:hover,
.custom-select-option:focus,
.custom-select-option.is-active {
  outline: 0;
  background: rgba(216, 155, 60, 0.2);
}

.custom-select-option[aria-selected="true"] {
  background: var(--storm-teal);
  color: var(--cream);
}

.custom-select.has-error .custom-select-trigger {
  border-color: var(--amber);
  box-shadow: 0 0 0 1px var(--amber);
}

.custom-select-error {
  margin: 0.35rem 0 0;
  color: var(--storm-teal);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.35;
}

.prototype-field > p {
  margin: 0.45rem 0 0;
  color: var(--text-dark-soft);
  font-size: 0.7rem;
  line-height: 1.4;
}

.prototype-upload-field {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  min-height: 3rem;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(22, 29, 31, 0.34);
  background: rgba(255, 253, 247, 0.82);
}

.prototype-upload-field .prototype-upload-input {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  opacity: 0;
  cursor: pointer;
}

.prototype-upload-button {
  display: inline-flex;
  min-width: 8.5rem;
  align-items: center;
  justify-content: center;
  padding: 0 0.9rem;
  background: var(--storm-teal);
  color: var(--cream);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.prototype-upload-name {
  min-width: 0;
  align-self: center;
  overflow: hidden;
  padding: 0.5rem 0.8rem;
  color: rgba(22, 29, 31, 0.58);
  font-size: 0.82rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.prototype-upload-input:focus-visible ~ .prototype-upload-button {
  outline: 2px solid var(--amber);
  outline-offset: -3px;
}

.prototype-form-action {
  display: flex;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-top: 1.5rem;
}

.prototype-form > button,
.prototype-form-action button {
  min-height: 3.5rem;
  padding: 0 1.3rem;
  border: 1px solid var(--storm-teal);
  border-radius: 0;
  background: var(--storm-teal);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.prototype-form > button:hover,
.prototype-form-action button:hover {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--ink);
}

.preorder-prototype-form .prototype-form-action {
  margin-top: 1rem;
}

.preorder-prototype-form .prototype-form-action button {
  min-height: 3rem;
  width: 100%;
}

.prototype-form-status {
  margin: 0.85rem 0 0;
  color: var(--storm-teal);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.45;
}

.prototype-form-status:not(:empty) {
  padding-top: 0.85rem;
  border-top: 1px solid var(--line-light);
}

.final-preorder {
  background:
    radial-gradient(circle at 20% 40%, rgba(26, 61, 79, 0.42), transparent 32%),
    linear-gradient(110deg, var(--storm-black), var(--storm-mid));
}

.final-preorder-inner {
  display: grid;
  grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  width: min(100% - (var(--pad) * 2), var(--content));
  margin: 0 auto;
  padding: clamp(4.5rem, 6vw, 6.5rem) 0;
}

.final-cover {
  position: relative;
  display: grid;
  place-items: center;
}

.final-cover::after {
  content: "";
  position: absolute;
  right: 5%;
  bottom: -1rem;
  left: 5%;
  z-index: -1;
  height: 2rem;
  background: rgba(14, 20, 23, 0.72);
  filter: blur(1rem);
}

.final-cover img {
  width: min(100%, 21rem);
  filter: drop-shadow(1.25rem 1.5rem 1.5rem rgba(14, 20, 23, 0.48));
}

.final-preorder h2 {
  max-width: 48rem;
}

.final-preorder > div > div:last-child > p:not(.eyebrow) {
  max-width: 39rem;
  margin-bottom: 1.6rem;
  color: var(--text-light-soft);
}

.final-retailer-group {
  max-width: 48rem;
}

.final-preorder .text-action {
  display: inline-block;
  margin-left: 1.3rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid currentColor;
  color: var(--sand);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid var(--line-dark);
  background: var(--storm-black);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.5rem 3rem;
  align-items: center;
  width: min(100% - (var(--pad) * 2), var(--content));
  margin: 0 auto;
  padding: 2.4rem 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 1.2rem;
}

.footer-meta,
.footer-copy {
  margin: 0;
  color: var(--text-light-soft);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-meta {
  grid-column: 2;
  text-align: center;
}

.footer-copy {
  grid-column: 3;
}

/* Praise page */
.praise-page {
  background: var(--storm-black);
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--storm-mid);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(14, 20, 23, 0.94), rgba(14, 20, 23, 0.48)),
    url("assets/images/praise-client-storm.jpg") center / cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(14, 20, 23, 0.75));
}

.page-hero-inner {
  width: min(100% - (var(--pad) * 2), var(--content));
  margin: 0 auto;
  padding: clamp(5rem, 8vw, 8rem) 0 clamp(3.5rem, 6vw, 5.5rem);
}

.page-hero h1 {
  max-width: 70rem;
  margin: 0;
  font-size: clamp(3.5rem, 5.2vw, 6rem);
  line-height: 0.88;
}

.page-hero h1 span {
  color: var(--amber);
  white-space: normal;
}

.page-hero .page-intro {
  max-width: 38rem;
  margin: 1.5rem 0 0;
  color: var(--text-light-soft);
}

.endorsement-card figcaption {
  display: grid;
  gap: 0.2rem;
}

.endorsement-card figcaption > span {
  display: grid;
  gap: 0.16rem;
}

.endorsement-card figcaption strong {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.endorsement-card figcaption small {
  color: var(--storm-teal);
  font-size: 0.75rem;
  line-height: 1.4;
}

.endorsement-wall-section {
  padding: clamp(4rem, 6vw, 6.5rem) 0;
  background: var(--storm-black);
}

.wall-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  width: min(100% - (var(--pad) * 2), var(--content));
  margin: 0 auto 3rem;
}

.wall-heading h2 {
  max-width: 52rem;
  margin: 0;
  font-size: clamp(2.75rem, 4vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.92;
  text-transform: uppercase;
}

.wall-heading p {
  margin: 0 0 0.5rem;
  color: var(--sand);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.endorsement-wall {
  columns: 2;
  column-gap: 1rem;
  width: min(100% - (var(--pad) * 2), var(--content));
  margin: 0 auto;
}

.endorsement-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 1rem;
  padding: clamp(1.4rem, 3vw, 2.25rem);
  break-inside: avoid;
  border: 1px solid var(--line-dark);
  background: var(--storm-mid);
}

.endorsement-card:nth-child(3n + 2) {
  background: var(--storm-teal-dark);
}

.endorsement-card:nth-child(3n) {
  background: var(--storm-teal);
}

.endorsement-card blockquote p {
  margin-bottom: 1.5rem;
  color: var(--cream);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.25;
}

.endorsement-card figcaption {
  grid-template-columns: 3.75rem minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
}

.endorsement-card .endorser-photo {
  width: 3.75rem;
  height: 3.75rem;
}

.endorsement-card figcaption strong {
  color: var(--cream);
}

.endorsement-card figcaption small {
  color: var(--sand);
}

.praise-close {
  background:
    linear-gradient(90deg, rgba(14, 20, 23, 0.94), rgba(14, 20, 23, 0.58)),
    url("assets/images/praise-client-storm.jpg") center / cover no-repeat;
}

.praise-close-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: end;
  width: min(100% - (var(--pad) * 2), var(--content));
  margin: 0 auto;
  padding: clamp(4.5rem, 7vw, 7rem) 0;
}

.praise-close h2 {
  max-width: 56rem;
  margin: 0;
  font-size: clamp(3rem, 4.6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}

/* Unlisted workbook page */
.workbook-page {
  min-height: 100svh;
  background: var(--bone);
  color: var(--ink);
  color-scheme: light;
}

.reader-header {
  border-bottom: 1px solid var(--line-light);
}

.reader-header-inner {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - (var(--pad) * 2), 68rem);
  margin: 0 auto;
}

.reader-header .brand-mark {
  color: var(--ink);
}

.reader-header p {
  margin: 0;
  color: var(--storm-teal);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workbook-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.7fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
  width: min(100% - (var(--pad) * 2), 68rem);
  min-height: calc(100svh - 4.5rem);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 8rem) 0;
}

.workbook-shell h1 {
  color: var(--ink);
  font-size: clamp(3rem, 3.8vw, 4.25rem);
  text-shadow: none;
  text-wrap: wrap;
}

.workbook-shell .workbook-title-line {
  display: block;
  margin-top: 0.12em;
  color: var(--storm-teal);
  font-family: "Newsreader", Georgia, serif;
  font-size: 0.82em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: none;
  white-space: normal;
}

.workbook-shell .workbook-intro {
  max-width: 40rem;
  color: var(--text-dark-soft);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.22;
}

.workbook-state {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
}

.workbook-state strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--storm-teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workbook-state p {
  max-width: 37rem;
  color: var(--text-dark-soft);
}

.workbook-art {
  position: relative;
  display: grid;
  aspect-ratio: 17 / 22;
  place-items: center;
  padding: 2rem;
  background:
    linear-gradient(145deg, transparent 0 36%, rgba(216, 155, 60, 0.92) 36% 48%, transparent 48%),
    linear-gradient(160deg, var(--storm-black), var(--storm-teal) 58%, var(--storm-black));
  color: var(--cream);
  box-shadow: 1.2rem 1.6rem 2.8rem rgba(22, 29, 31, 0.22);
  transform: rotate(1.5deg);
}

.workbook-art::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(242, 231, 206, 0.42);
}

.workbook-art > div {
  position: relative;
  z-index: 1;
  text-align: center;
}

.workbook-art span {
  display: block;
  margin-bottom: 1rem;
  color: var(--sand);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workbook-art strong {
  display: block;
  font-size: clamp(1.75rem, 2.7vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-transform: uppercase;
}

.workbook-art small {
  display: block;
  margin-top: 1.5rem;
  color: var(--cream);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Unlisted complete reader collection */
.conversations-gate-page {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  background: var(--storm-black);
}

.conversations-gate-page > main {
  display: flex;
  flex: 1;
}

.conversations-gate-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(14, 20, 23, 0.96);
}

.conversations-gate-header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - (var(--pad) * 2), var(--content));
  margin: 0 auto;
}

.conversations-gate-header-inner > p {
  margin: 0;
  color: var(--sand);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.conversations-gate-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  flex: 1;
  width: 100%;
  min-height: clamp(40rem, 62vw, 49rem);
  align-items: center;
  overflow: hidden;
}

.conversations-gate-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(14, 20, 23, 0.94) 0%, rgba(14, 20, 23, 0.78) 48%, rgba(14, 20, 23, 0.54) 100%),
    linear-gradient(180deg, rgba(14, 20, 23, 0.3), rgba(14, 20, 23, 0.72)),
    var(--conversations-background, url("assets/images/marbled-cymatic.jpg")) center / cover no-repeat;
  transform: scale(1.01);
}

.conversations-gate-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 8rem;
  background: linear-gradient(180deg, transparent, rgba(14, 20, 23, 0.72));
  pointer-events: none;
}

.conversations-gate-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.82fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  width: min(100% - (var(--pad) * 2), var(--content));
  margin: 0 auto;
  padding: clamp(4.5rem, 7vw, 7rem) 0;
}

.conversations-gate-copy {
  max-width: 51rem;
}

.conversations-gate-copy h1 {
  margin-bottom: 1.5rem;
  color: var(--cream);
  font-size: clamp(3.7rem, 6.4vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.82;
  text-shadow: 0 0.25rem 1.75rem rgba(14, 20, 23, 0.6);
  text-transform: uppercase;
}

.conversations-gate-copy h1 span,
.conversations-gate-copy h1 strong {
  display: block;
}

.conversations-gate-copy h1 strong {
  color: var(--amber);
  font-size: 0.78em;
}

.conversations-gate-intro {
  max-width: 43rem;
  margin-bottom: 1rem;
  color: var(--cream);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
}

.conversations-gate-description {
  max-width: 42rem;
  margin-bottom: 2rem;
  color: var(--text-light-soft);
}

.conversations-deliverables {
  display: grid;
  gap: 0.8rem;
  max-width: 43rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.conversations-deliverables li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--cream);
  line-height: 1.45;
}

.conversations-deliverables li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--amber);
  font-weight: 900;
}

.conversations-form-shell {
  position: relative;
  padding: clamp(1.75rem, 3.5vw, 3rem);
  border: 1px solid rgba(242, 231, 206, 0.66);
  background: rgba(236, 228, 211, 0.97);
  box-shadow: 0 1.75rem 5rem rgba(14, 20, 23, 0.42);
  color: var(--ink);
}

.conversations-form-shell > p {
  margin-bottom: 1.6rem;
  color: var(--text-dark-soft);
}

.conversations-prototype-form .prototype-field {
  margin-bottom: 0.9rem;
}

.conversations-prototype-form > button {
  width: 100%;
}

.conversations-gate-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - (var(--pad) * 2), var(--content));
  margin: 0 auto;
  padding: 1.5rem 0;
  color: var(--text-light-soft);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.conversations-gate-footer p {
  margin: 0;
}

/* Superseded video-library prototype retained for review */
.connections-page {
  min-height: 100svh;
  background: var(--storm-black);
}

.connection-detail-page {
  min-height: 100svh;
  background: var(--storm-black);
}

.connections-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(14, 20, 23, 0.94);
  backdrop-filter: blur(16px);
}

.connections-header-inner {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - (var(--pad) * 2), var(--content));
  margin: 0 auto;
}

.connections-header-inner > p {
  margin: 0;
  color: var(--sand);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.connections-back-link {
  color: var(--sand);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.connections-back-link span {
  display: inline-block;
  margin-left: 0.35rem;
  transition: transform 180ms ease;
}

.connections-back-link:hover span {
  transform: translateX(0.25rem);
}

.connections-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(27rem, 44vw, 37rem);
  align-items: center;
  overflow: hidden;
}

.connections-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(14, 20, 23, 0.96) 0%, rgba(14, 20, 23, 0.72) 48%, rgba(14, 20, 23, 0.28) 100%),
    linear-gradient(180deg, rgba(14, 20, 23, 0.2), rgba(14, 20, 23, 0.7)),
    url("assets/images/hero-liquid-swirl.jpg") center 48% / cover no-repeat;
  transform: scale(1.015);
}

.connections-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 7rem;
  background: linear-gradient(180deg, transparent, var(--storm-black));
}

.connections-hero-inner {
  width: min(100% - (var(--pad) * 2), var(--content));
  margin: 0 auto;
  padding: clamp(4.5rem, 7vw, 6.5rem) 0;
}

.connections-hero h1 {
  max-width: 56rem;
  margin-bottom: 1.35rem;
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 0.84;
  text-shadow: 0 0.25rem 1.7rem rgba(14, 20, 23, 0.6);
}

.connections-hero h1 span,
.connections-hero h1 strong {
  white-space: normal;
}

.connections-intro {
  max-width: 45rem;
  margin-bottom: 0;
  color: var(--cream);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.25;
  text-shadow: 0 0.15rem 1rem rgba(14, 20, 23, 0.72);
}

.connections-library {
  padding: clamp(4.5rem, 7vw, 7.5rem) 0;
  background:
    linear-gradient(rgba(236, 228, 211, 0.965), rgba(236, 228, 211, 0.985)),
    url("assets/images/book-muqarnas-teal.jpg") center / cover no-repeat;
  color: var(--ink);
}

.connections-library-inner {
  width: min(100% - (var(--pad) * 2), var(--content));
  margin: 0 auto;
}

.connections-library-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.connections-library-heading h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.65rem, 4vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-transform: uppercase;
}

.connections-library-heading > div > p {
  max-width: 45rem;
  margin-bottom: 0;
  color: var(--text-dark-soft);
}

.connections-count {
  flex: 0 0 auto;
  margin: 0 0 0.4rem;
  color: var(--storm-teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.connections-episode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.connection-episode {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: rgba(242, 231, 206, 0.82);
  box-shadow: 0 0.75rem 2.5rem rgba(14, 20, 23, 0.06);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.connection-episode:hover {
  border-color: rgba(26, 61, 79, 0.42);
  box-shadow: 0 1rem 2.75rem rgba(14, 20, 23, 0.12);
  transform: translateY(-0.2rem);
}

.episode-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--storm-black);
}

.episode-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(14, 20, 23, 0.48));
}

.episode-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 400ms ease;
}

.connection-episode:hover .episode-card-media img {
  transform: scale(1.045);
}

.episode-play {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: grid;
  width: 3rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(242, 231, 206, 0.72);
  border-radius: 50%;
  background: rgba(14, 20, 23, 0.72);
  backdrop-filter: blur(10px);
}

.episode-play span {
  width: 0;
  height: 0;
  margin-left: 0.18rem;
  border-top: 0.36rem solid transparent;
  border-bottom: 0.36rem solid transparent;
  border-left: 0.58rem solid var(--cream);
}

.episode-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.35rem, 2.4vw, 2rem);
}

.episode-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin-bottom: 1.1rem;
  color: var(--storm-teal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.episode-copy h3 {
  margin-bottom: 0.65rem;
  color: var(--ink);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.98;
  text-transform: uppercase;
}

.episode-copy > p {
  margin-bottom: 1.4rem;
  color: var(--text-dark-soft);
  font-size: 0.93rem;
  line-height: 1.55;
}

.episode-copy .episode-guest {
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.episode-link {
  display: inline-block;
  margin-top: auto;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid currentColor;
  color: var(--storm-teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.connections-close {
  border-top: 1px solid var(--line-dark);
  background: var(--storm-teal-dark);
}

.connections-close-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(100% - (var(--pad) * 2), var(--content));
  margin: 0 auto;
  padding: 2.5rem 0;
}

.connections-close-inner > p {
  max-width: 48rem;
  margin: 0;
  color: var(--text-light-soft);
  font-size: 0.84rem;
}

.connections-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - (var(--pad) * 2), var(--content));
  margin: 0 auto;
  padding: 1.75rem 0;
  color: var(--text-light-soft);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.connections-footer p {
  margin: 0;
}

/* Lonesome Conversation detail pages */
.episode-theater {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--storm-black);
}

.episode-theater-backdrop {
  position: absolute;
  inset: -3rem;
  z-index: -2;
  background-position: center;
  background-size: cover;
  filter: blur(32px) saturate(0.75);
  opacity: 0.44;
  transform: scale(1.08);
}

.episode-theater::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(14, 20, 23, 0.72), rgba(14, 20, 23, 0.9) 70%, var(--storm-black)),
    linear-gradient(90deg, rgba(14, 20, 23, 0.52), rgba(16, 42, 51, 0.38));
}

.episode-theater-inner {
  width: min(100% - (var(--pad) * 2), var(--content));
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(3.5rem, 6vw, 5.5rem);
}

.episode-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  color: var(--text-light-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.episode-breadcrumb a {
  color: var(--sand);
}

.episode-player-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(242, 231, 206, 0.24);
  background: #050708;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.45);
}

.episode-player-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.episode-title-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.34fr);
  gap: 0.5rem clamp(2rem, 6vw, 6rem);
  align-items: start;
  padding-top: clamp(2rem, 4vw, 3.5rem);
}

.episode-detail-meta,
.episode-detail-guest {
  margin-bottom: 0.4rem;
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.episode-detail-meta {
  grid-column: 1;
}

.episode-title-block h1 {
  grid-column: 1;
  max-width: 60rem;
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5.5vw, 5.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.86;
  text-transform: uppercase;
}

.episode-detail-guest {
  grid-column: 2;
  grid-row: 1;
  color: var(--sand);
}

.episode-detail-description {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: var(--text-light-soft);
  line-height: 1.65;
}

.episode-transcript-section {
  padding: clamp(3.75rem, 7vw, 6.5rem) 0;
  background: var(--bone);
  color: var(--ink);
}

.episode-transcript-inner {
  width: min(100% - (var(--pad) * 2), 58rem);
  margin: 0 auto;
}

.episode-transcript-label {
  margin-bottom: 1rem;
  color: var(--storm-teal);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.episode-transcript-copy {
  border-top: 1px solid var(--line-light);
}

.transcript-block {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line-light);
}

.transcript-block > p:last-child {
  margin: 0;
  color: var(--text-dark-soft);
  line-height: 1.75;
}

.transcript-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0;
  color: var(--storm-teal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.transcript-meta time {
  color: rgba(22, 29, 31, 0.5);
}

.episode-related {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  border-top: 1px solid var(--line-dark);
  background:
    linear-gradient(120deg, rgba(14, 20, 23, 0.78), rgba(16, 42, 51, 0.94)),
    url("assets/images/hero-liquid-swirl.jpg") center / cover no-repeat;
}

.episode-related-inner {
  width: min(100% - (var(--pad) * 2), var(--content));
  margin: 0 auto;
}

.episode-related-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.episode-related-heading h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-transform: uppercase;
}

.episode-related-heading .arrow-link {
  flex: 0 0 auto;
  color: var(--sand);
}

/* Progressive reveal */
[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal].reveal-ready {
  opacity: 0;
  transform: translateY(1rem);
}

.js [data-reveal].reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

@media (max-width: 1120px) {
  .preorder-tier-grid {
    grid-template-columns: 1fr;
    row-gap: clamp(1.25rem, 2.5vw, 2.25rem);
  }

  .preorder-tier-card {
    grid-template-rows: auto auto;
    width: min(100%, 50rem);
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(13rem, 17rem);
    gap: 2.5rem;
  }

  .hero-book {
    max-width: 17rem;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 6.2vw, 4.5rem);
  }

  .luke-section,
  .luke-inner {
    min-height: 46rem;
  }

  .luke-image {
    background-position: 100% 16%;
    background-size: 150% auto;
  }

  .luke-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 20, 23, 0.04) 0 36%, rgba(14, 20, 23, 0.52) 55%, rgba(14, 20, 23, 0.96) 78% 100%);
  }

  .luke-inner {
    z-index: 1;
    align-items: end;
    padding: 4rem 0;
  }

  .luke-copy {
    max-width: 52rem;
    margin: 0 auto;
    text-align: center;
  }

  .teaching-card h3 {
    font-size: clamp(1.05rem, 1.8vw, 1.15rem);
  }

  .footer-inner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .footer-copy {
    grid-column: 2;
    text-align: right;
  }

  .footer-meta {
    grid-column: 1;
    text-align: left;
  }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .split-heading {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: clamp(2rem, 4vw, 3rem);
  }

  .stay-close-inner {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: clamp(2rem, 4vw, 3rem);
  }

  .split-heading h2 {
    font-size: clamp(2.2rem, 3.6vw, 2.65rem);
  }

  .promise-heading h2,
  .final-preorder h2,
  .stay-close h2 {
    font-size: clamp(2.2rem, 3.6vw, 2.65rem);
  }

  .store-button[data-retailer="bookshop"] > img {
    width: 105%;
    max-width: 105%;
  }

  .store-button[data-retailer="barnes-and-noble"] > img {
    width: 112%;
    max-width: 112%;
    transform: scale(1.12);
  }

  .store-button[data-retailer="amazon"] > img {
    width: 68%;
    max-width: 68%;
    max-height: 1.32rem;
  }
}

@media (min-width: 1121px) and (max-width: 1199px) {
  .split-heading {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: clamp(2rem, 4vw, 3rem);
  }

  .split-heading h2 {
    font-size: clamp(2.2rem, 3.6vw, 2.65rem);
  }

  .promise-heading h2,
  .final-preorder h2,
  .stay-close h2 {
    font-size: clamp(2.2rem, 3.6vw, 2.65rem);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 4.25rem;
  }

  .header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 0.75rem;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 4;
    grid-row: 1;
  }

  .header-action {
    grid-column: 3;
    grid-row: 1;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    justify-content: stretch;
    padding: 0;
    border-bottom: 1px solid var(--line-dark);
    background: rgba(14, 20, 23, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.5rem);
    transition: none;
  }

  .no-js .primary-nav,
  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav a {
    min-height: 3.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--line-dark);
    font-size: 0.8rem;
    text-align: center;
  }

  .primary-nav a::after {
    display: none;
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-copy {
    max-width: 48rem;
  }

  .hero-book {
    grid-row: 1;
    width: min(48vw, 15rem);
    margin: 0 auto;
    justify-self: center;
  }

  .hero-copy {
    grid-row: 2;
  }

  .hero h1 {
    font-size: clamp(3rem, 7.4vw, 4.2rem);
  }

  .praise-banner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .split-heading,
  .promise-heading,
  .stay-close-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .teaching-card:first-child {
    grid-column: 1 / -1;
    min-height: 17rem;
  }

  .card-number {
    margin-bottom: 3.5rem;
  }

  .promise-heading h2 {
    max-width: 44rem;
  }

  .stay-close-inner {
    min-height: auto;
  }

  .preorder-offer-layout {
    grid-template-columns: 1fr;
  }

  .preorder-form-shell {
    width: 100%;
  }

  .final-preorder-inner {
    grid-template-columns: minmax(9rem, 13rem) minmax(0, 1fr);
    gap: 3rem;
  }

  .conversations-gate-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .conversations-form-shell {
    width: min(100%, 43rem);
  }

  .workbook-shell {
    grid-template-columns: 1fr;
  }

  .connections-episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .episode-title-block {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .episode-detail-meta,
  .episode-title-block h1,
  .episode-detail-guest,
  .episode-detail-description {
    grid-column: 1;
    grid-row: auto;
  }

  .episode-detail-guest {
    margin-top: 1rem;
  }

  .episode-detail-description {
    max-width: 46rem;
  }

  .workbook-art {
    width: min(80%, 24rem);
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .luke-section {
    display: grid;
  }

  .luke-image {
    position: relative;
    min-height: 20rem;
    background-position: 100% 16%;
    background-size: 164% auto;
  }

  .luke-image::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 22%;
    background: linear-gradient(180deg, transparent, rgba(14, 20, 23, 0.72));
    pointer-events: none;
  }

  .luke-section::after {
    content: none;
  }

  .luke-inner {
    min-height: 0;
    padding: 3.75rem 0;
  }

  .luke-copy {
    max-width: none;
    margin: 0;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .menu-toggle-label {
    display: none;
  }

  .header-action {
    min-height: 2.55rem;
    padding-inline: 0.8rem;
  }

  .hero-inner {
    gap: 2rem;
    padding-bottom: 3.5rem;
  }

  .hero-media {
    background-position: 65% center;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(14, 20, 23, 0.45), rgba(14, 20, 23, 0.84) 58%, rgba(14, 20, 23, 0.98)),
      linear-gradient(90deg, rgba(14, 20, 23, 0.74), rgba(14, 20, 23, 0.16));
  }

  .hero h1 {
    font-size: clamp(1.9rem, 9.5vw, 3rem);
    line-height: 0.88;
  }

  .hero h1 span,
  .hero h1 strong {
    white-space: normal;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

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

  .campaign-line {
    grid-template-columns: 1fr;
    gap: 0.45rem 1rem;
  }

  .campaign-publisher {
    text-align: left;
  }

  .praise-preview-title {
    font-size: clamp(1.5rem, 7.7vw, 2.6rem);
    text-wrap: wrap;
  }

  .praise-banner {
    grid-template-columns: 1fr;
  }

  .intro-grid h2,
  .split-heading h2,
  .promise-heading h2,
  .final-preorder h2,
  .stay-close h2,
  .luke-copy h2 {
    font-size: clamp(1.5rem, 8vw, 2.6rem);
  }

  .split-heading h2 {
    font-size: clamp(1.45rem, 7.2vw, 2.4rem);
    text-wrap: wrap;
  }

  .promise-heading h2 {
    font-size: clamp(1.45rem, 7.2vw, 2.4rem);
  }

  .page-hero h1 {
    font-size: clamp(1.75rem, 8.8vw, 3rem);
  }

  .workbook-shell h1 {
    font-size: clamp(1.65rem, 8.5vw, 2.9rem);
    line-height: 0.94;
  }

  .workbook-art {
    width: min(90%, 22rem);
    padding: 1.4rem;
  }

  .workbook-art::before {
    inset: 0.75rem;
  }

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

  .teaching-card:first-child {
    grid-column: auto;
  }

  .teaching-card {
    min-height: 0;
  }

  .teaching-card .card-number {
    margin-bottom: 2.25rem;
    font-size: 2.2rem;
  }

  .promise-list {
    grid-template-columns: 1fr;
  }

  .promise-list li,
  .promise-list li:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    padding: 1.1rem 0;
    border-right: 0;
  }

  .promise-list li {
    grid-template-columns: 3.5rem minmax(0, 1fr);
  }

  .quote-band {
    min-height: 55svh;
  }

  .quote-band blockquote p {
    font-size: clamp(1.5rem, 7.8vw, 2.8rem);
    line-height: 0.94;
  }

  .quote-band blockquote p em {
    font-size: 0.74em;
  }

  .wall-heading h2 {
    font-size: clamp(1.75rem, 8.8vw, 2.75rem);
  }

  .praise-close h2 {
    font-size: clamp(1.8rem, 9vw, 3rem);
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .signup-form-provider .forminator-custom-form {
    grid-template-columns: 1fr;
  }

  .signup-form-provider .forminator-row:not(.forminator-row-last),
  .signup-form-provider .forminator-row-last {
    grid-column: 1;
  }

  .signup-form-provider .forminator-row-last {
    padding-top: 0;
  }

  .signup-form-provider .forminator-input {
    border-right: 1px solid rgba(242, 231, 206, 0.38) !important;
    border-bottom: 0 !important;
  }

  .signup-form-provider .forminator-button-submit {
    width: 100% !important;
  }

  .field-row input {
    border-right: 1px solid rgba(242, 231, 206, 0.38);
    border-bottom: 0;
  }

  .preorder-form-heading,
  .prototype-form-action {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .prototype-field-wide {
    grid-column: auto;
  }

  .prototype-form-action button {
    width: 100%;
  }

  .final-preorder-inner {
    grid-template-columns: 1fr;
  }

  .final-cover {
    width: min(52%, 12rem);
  }

  .final-preorder .text-action {
    display: block;
    width: max-content;
    margin: 1.2rem 0 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .footer-meta,
  .footer-copy {
    grid-column: 1;
    text-align: left;
  }

  .wall-heading,
  .praise-close-inner {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .endorsement-wall {
    columns: 1;
  }

  .praise-close-inner .button {
    justify-self: start;
  }

  .reader-header p {
    display: none;
  }

  .conversations-gate-header-inner > p {
    display: none;
  }

  .conversations-gate-hero {
    min-height: auto;
  }

  .conversations-gate-media {
    background:
      linear-gradient(180deg, rgba(14, 20, 23, 0.52), rgba(14, 20, 23, 0.92) 72%, var(--storm-black)),
      url("assets/images/marbled-cymatic.jpg") 58% center / cover no-repeat;
  }

  .conversations-gate-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem 0;
  }

  .conversations-gate-copy h1 {
    font-size: clamp(2.8rem, 13vw, 4.25rem);
  }

  .conversations-gate-copy h1 strong {
    font-size: 0.76em;
  }

  .conversations-gate-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .connections-header-inner > p {
    display: none;
  }

  .connections-hero {
    min-height: auto;
  }

  .connections-hero-media {
    background:
      linear-gradient(180deg, rgba(14, 20, 23, 0.44), rgba(14, 20, 23, 0.88) 72%, var(--storm-black)),
      url("assets/images/hero-liquid-swirl.jpg") 54% center / cover no-repeat;
  }

  .connections-hero-inner {
    padding: 4rem 0;
  }

  .connections-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.8rem);
  }

  .connections-hero h1 strong {
    font-size: 0.76em;
    letter-spacing: -0.035em;
  }

  .connections-library-heading,
  .connections-close-inner,
  .connections-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .connections-episode-grid {
    grid-template-columns: 1fr;
  }

  .connections-library-heading h2 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .episode-theater-inner {
    width: 100%;
    padding-top: 1.5rem;
  }

  .episode-breadcrumb,
  .episode-title-block {
    width: calc(100% - (var(--pad) * 2));
    margin-right: auto;
    margin-left: auto;
  }

  .episode-player-shell {
    border-right: 0;
    border-left: 0;
  }

  .episode-title-block h1 {
    font-size: clamp(2.35rem, 12vw, 3.8rem);
  }

  .transcript-block {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .transcript-meta {
    flex-direction: row;
    justify-content: space-between;
  }

  .episode-related-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .episode-related-heading h2 {
    width: 100%;
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }
}

@media (max-width: 380px) {
  .brand-mark {
    font-size: 0.68rem;
  }

  .brand-mark strong {
    font-size: 1rem;
  }

  .header-inner {
    gap: 0.4rem;
  }

  .header-action {
    padding-inline: 0.65rem;
    font-size: 0.66rem;
  }

  .hero-book {
    width: min(48vw, 10.5rem);
  }

  .campaign-line {
    grid-template-columns: 1fr;
  }

  .campaign-publisher {
    text-align: left;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-parallax] > * {
    transform: none !important;
  }

  .js [data-reveal].reveal-ready {
    opacity: 1;
    transform: none;
  }
}
.preorder-tier-frame,
.preorder-tier-frame .ep-iFrameContainer,
.preorder-tier-frame .ep-wrapper {
  min-height: 461px;
}

.preorder-tier-two .preorder-tier-frame,
.preorder-tier-two .preorder-tier-frame .ep-iFrameContainer,
.preorder-tier-two .preorder-tier-frame .ep-wrapper {
  min-height: 656px;
}

.preorder-forminator-test {
	background-image:
		linear-gradient(
			100deg,
			rgba(14, 20, 23, 0.92),
			rgba(14, 20, 23, 0.6) 58%,
			rgba(14, 20, 23, 0.78)
		),
		var(
			--preorder-forminator-bg-image,
			url("assets/images/dunes.png")
		);
	background-position: 0 0, center 52%;
	background-size: cover, cover;
	background-repeat: no-repeat, no-repeat;
}

.preorder-forminator-test .preorder-form-heading h2 {
	color: var(--cream);
	text-transform: uppercase;
}

.preorder-forminator-test .preorder-forminator-tier-grid {
	column-gap: clamp(1rem, 2vw, 2rem);
	row-gap: 0;
}

.preorder-forminator-test .preorder-forminator-card {
	border: 1px solid rgba(242, 231, 206, 0.58);
	background: #fff;
	box-shadow: 0 1.5rem 4rem rgba(14, 20, 23, 0.34);
	color: var(--ink);
	grid-template-rows: auto auto;
	align-content: start;
}

.preorder-forminator-test .preorder-tier-header {
	border-bottom: 1px solid rgba(22, 29, 31, 0.14);
	background:
		linear-gradient(120deg, rgba(216, 155, 60, 0.13), transparent 58%),
		var(--bone);
}

.preorder-forminator-test .preorder-tier-header h4 {
	color: var(--ink);
}

.preorder-forminator-test .preorder-forminator-slot {
	min-height: 0 !important;
	height: auto;
	padding: clamp(1.25rem, 2.2vw, 1.75rem);
	background: #fff;
}

.preorder-forminator-test .forminator-input,
.preorder-forminator-test .forminator-textarea,
.preorder-forminator-test .forminator-select2 .selection .select2-selection--single,
.preorder-forminator-test .forminator-file-upload {
	background-color: #fff !important;
	color: var(--ink) !important;
}

.preorder-forminator-test .forminator-label,
.preorder-forminator-test .forminator-description {
	color: var(--ink);
}

.preorder-forminator-test .forminator-button-submit {
	background: var(--amber) !important;
	color: var(--ink) !important;
}

@media (max-width: 1120px) {
	.preorder-forminator-test .preorder-forminator-tier-grid {
		grid-template-columns: 1fr;
		row-gap: 2rem;
	}

	.preorder-forminator-test .preorder-forminator-slot {
		min-height: 0 !important;
	}
}


/* Home Copy Forminator polish: interactive upload control and readable spacing. */
.preorder-forminator-test .forminator-button-upload {
	background-color: var(--storm-teal) !important;
	color: var(--cream) !important;
	border: 1px solid var(--storm-teal) !important;
	opacity: 1 !important;
	font-weight: 700 !important;
}

.preorder-forminator-test .forminator-button-upload:hover,
.preorder-forminator-test .forminator-button-upload:focus-visible {
	background-color: var(--ink) !important;
	color: var(--cream) !important;
	border-color: var(--ink) !important;
}

.preorder-forminator-test .forminator-label {
	font-size: 0.875rem !important;
	line-height: 1.35 !important;
	letter-spacing: 0.03em !important;
	font-weight: 700 !important;
	margin-bottom: 0.4rem !important;
}

.preorder-forminator-test .forminator-row {
	margin-bottom: 1.1rem !important;
}

.preorder-forminator-test .forminator-row:last-child {
	margin-bottom: 0 !important;
}
.preorder-forminator-test .forminator-button-submit,
.preorder-forminator-test .forminator-button-upload {
	font-family: Archivo, Arial, Helvetica, sans-serif !important;
	font-size: 0.72rem !important;
	font-weight: 900 !important;
	line-height: 1 !important;
	letter-spacing: 0.07em !important;
	text-transform: uppercase !important;
	min-height: 56px !important;
	padding: 12px 18.4px !important;
}

/* Keep Home Copy field borders visible on mobile. */
.preorder-forminator-test .forminator-input,
.preorder-forminator-test .forminator-textarea,
.preorder-forminator-test .forminator-select2 .selection .select2-selection--single,
.preorder-forminator-test .forminator-file-upload {
	border: 1px solid rgba(26, 61, 79, 0.34) !important;
}

/* Conversations Forminator form. */
.conversations-gate-page .conversations-form-shell .forminator-custom-form {
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.conversations-gate-page .conversations-form-shell .forminator-row {
	margin: 0 0 0.9rem !important;
}

.conversations-gate-page .conversations-form-shell .forminator-row:last-child {
	margin-bottom: 0 !important;
}

.conversations-gate-page .conversations-form-shell .forminator-col {
	padding: 0 !important;
}

.conversations-gate-page .conversations-form-shell .forminator-label {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.conversations-gate-page .conversations-form-shell .forminator-input {
	box-sizing: border-box !important;
	width: 100% !important;
	min-height: 56px !important;
	padding: 12.8px 15.2px !important;
	border: 1px solid rgba(22, 29, 31, 0.34) !important;
	border-radius: 0 !important;
	background: rgba(255, 253, 247, 0.82) !important;
	color: var(--ink) !important;
	box-shadow: none !important;
}

.conversations-gate-page .conversations-form-shell .forminator-button-submit {
	width: 100% !important;
	min-height: 56px !important;
	padding: 0 20.8px !important;
	border: 1px solid var(--storm-teal) !important;
	border-radius: 0 !important;
	background: var(--storm-teal) !important;
	color: var(--cream) !important;
	font-family: Archivo, Arial, Helvetica, sans-serif !important;
	font-size: 0.75rem !important;
	font-weight: 800 !important;
	line-height: 1.6 !important;
	letter-spacing: 0.06em !important;
	text-transform: uppercase !important;
}

.conversations-gate-page .conversations-form-shell .forminator-button-submit:hover,
.conversations-gate-page .conversations-form-shell .forminator-button-submit:focus-visible {
	background: var(--ink) !important;
	border-color: var(--ink) !important;
	color: var(--cream) !important;
}
@media (max-width: 640px) {
  #forminator-module-49 #upload-1 .forminator-file-upload {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.45rem !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }

  #forminator-module-49 #upload-1 .forminator-button-upload {
    display: flex !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 56px !important;
    margin: 0 !important;
    align-items: center;
    justify-content: center;
  }

  #forminator-module-49 #upload-1 .forminator-file-upload > span[data-empty-text] {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 0.15rem !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
    line-height: 1.35 !important;
  }

  #forminator-module-49 #upload-1 .forminator-button-delete,
  #forminator-module-49 #upload-1 .forminator-button-delete:hover,
  #forminator-module-49 #upload-1 .forminator-button-delete:focus,
  #forminator-module-49 #upload-1 .forminator-button-delete:active {
    background: transparent !important;
    background-image: none !important;
    border: 0 !important;
    box-shadow: none !important;
  }
}
@media (max-width: 640px) {
  #forminator-module-49 #upload-1 .forminator-button-delete,
  #forminator-module-49 #upload-1 .forminator-button-delete:hover,
  #forminator-module-49 #upload-1 .forminator-button-delete:focus,
  #forminator-module-49 #upload-1 .forminator-button-delete:active {
    appearance: none !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: 0 !important;
    box-shadow: none !important;
  }
}

#forminator-module-49 #upload-1 .forminator-button-delete {
  display: none !important;
}





.preorder-forminator-test .preorder-tier-image {
  display: flex;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(1.15rem, 2vw, 1.5rem);
  overflow: hidden;
  background: transparent;
}

.preorder-forminator-test .preorder-tier-image__asset {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 22rem;
  object-fit: contain;
  object-position: center;
}

.preorder-forminator-test
  .preorder-tier-image.is-height-equalized
  .preorder-tier-image__asset {
  height: 100%;
}