/* Requested interaction and responsive refinements */
.button.solid:hover,
.newsletter .button.solid:hover {
  background: #000;
  border-color: var(--green);
  color: var(--green);
}

.button:not(.solid):hover {
  background: var(--green);
  border-color: var(--green);
  color: #111;
}

.contact-form .button:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
}

.nav a.active {
  color: inherit;
}

.home-hero {
  width: 100%;
  height: auto;
  min-height: calc(100vh - 90px);
  min-height: calc(100svh - 90px);
}

.home-hero::before {
  inset: 10px calc(50% - 465px);
  z-index: 0;
  background-position: 64% center;
  background-size: 500px auto;
}

.home-hero .hero-grid {
  width: min(calc(100% - 48px), var(--width));
  max-width: var(--width);
  min-height: calc(100vh - 90px);
  min-height: calc(100svh - 90px);
  padding-inline: 0;
  grid-template-columns: minmax(0,1fr) 260px;
  gap: 70px;
  align-items: center;
  z-index: 1;
}

.home-hero .hero-copy {
  max-width: 600px;
}

.home-hero .hero-copy > p {
  font-size: 18px;
  line-height: 1.58;
}

.home-hero .hero-copy .name { margin-bottom: 12px; }
.home-hero .hero-copy h1 { margin-bottom: 7px; }
.home-hero .hero-copy h2 { margin-bottom: 26px; line-height: 1.25; }
.home-hero .hero-buttons { margin-top: 24px; gap: 13px; }

.home-hero .hero-book {
  width: 260px;
  justify-self: end;
  transform: none;
}

.home-hero .hero-book:hover {
  transform: scale(1.045);
}

.author-teaser img {
  border: 2px solid #999;
  box-shadow: 0 0 14px #777;
  object-fit: cover;
  object-position: 50% 35%;
}

.author-teaser-photo {
  display: block;
  justify-self: end;
  border-radius: 50%;
  transition: transform .25s ease;
}

.author-teaser-photo:hover { transform: scale(1.025); }
.author-teaser-photo:focus-visible { outline: 2px solid var(--green); outline-offset: 7px; }

/* Book detail navigation: a quiet fixed edge cue on desktop. */
.book-detail-hero {
  position: relative;
}

.book-switch {
  position: fixed;
  z-index: 16;
  top: 50%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.45);
  transform: translateY(-50%);
  transition: color .25s ease;
}

.book-switch.prev { left: 14px; justify-content: flex-start; }
.book-switch.next { right: 14px; }

.book-switch b {
  width: 38px;
  height: 64px;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  color: inherit;
  font: 200 38px/1 Arial,sans-serif;
  transition: transform .25s ease,color .25s ease;
}

.book-switch-preview {
  width: 0;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  background: rgba(7,7,7,.92);
  box-shadow: 0 10px 28px rgba(0,0,0,.38);
  pointer-events: none;
  transition: width .28s ease,opacity .2s ease,padding .28s ease;
}

.book-switch-preview img {
  width: 36px;
  height: 56px;
  flex: 0 0 36px;
  object-fit: cover;
  box-shadow: 0 5px 14px rgba(0,0,0,.55);
}

.book-switch-copy {
  width: 104px;
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.book-switch-copy small {
  color: #8f8f8f;
  font-size: 9px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.book-switch-copy strong {
  margin-top: 4px;
  color: #f0f0f0;
  font-size: 12px;
  font-weight: 400;
}

.book-switch:hover,
.book-switch:focus-visible {
  color: #fff;
  outline: none;
}

.book-switch:focus-visible {
  filter: drop-shadow(0 0 5px rgba(255,255,255,.55));
}

.book-switch:hover .book-switch-preview,
.book-switch:focus-visible .book-switch-preview {
  width: 166px;
  opacity: 1;
  padding: 10px;
}

.book-switch.prev:hover b,
.book-switch.prev:focus-visible b { transform: translateX(-3px); }
.book-switch.next:hover b,
.book-switch.next:focus-visible b { transform: translateX(3px); }

.buy-buttons.preorder-only {
  grid-template-columns: 1fr;
  max-width: 340px;
}

.buy-buttons .preorder-button,
.buy-buttons .preorder-button:hover {
  justify-content: flex-start;
  gap: 12px;
  border-color: rgba(196,255,6,.46);
  background: rgba(196,255,6,.055);
  color: #e5e5e5;
  cursor: default;
  letter-spacing: .045em;
}

.preorder-button::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(196,255,6,.62);
}

/* Typographic wordmark inspired by the restrained cover lettering. */
.logo.wordmark {
  width: auto;
  min-width: 245px;
  overflow: visible;
  color: #f2f2f2;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: .52em;
  white-space: nowrap;
  text-transform: uppercase;
}

.logo.wordmark:hover { color: var(--green); }

/* Author hero: editorial split composition instead of the former round portrait. */
.author-hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 42%,rgba(196,255,6,.08),transparent 27%),
    linear-gradient(115deg,#050505 0%,#050505 57%,#0b0d0d 100%);
  border-bottom: 1px solid #303030;
}

.author-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(90deg,transparent 0,transparent 139px,rgba(255,255,255,.018) 140px);
}

.author-hero-grid {
  position: relative;
  min-height: 610px;
  grid-template-columns: minmax(0,1fr) 390px;
  gap: 76px;
  padding-block: 62px;
}

.author-hero-copy { position: relative; z-index: 2; }

.author-hero-copy .kicker {
  margin-bottom: 8px;
  letter-spacing: .16em;
}

.author-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(58px,7vw,82px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.015em;
}

.author-hero-copy h2 {
  max-width: 520px;
  margin: 12px 0 30px;
  color: rgba(255,255,255,.54);
  font-size: 27px;
  font-weight: 300;
}

.author-hero-statement {
  max-width: 540px;
  padding: 4px 0 4px 22px;
  border-left: 2px solid var(--green);
}

.author-hero-statement p { margin: 0 0 12px; }
.author-hero-statement p:last-child { margin-bottom: 0; }
.author-hero-statement b { font-weight: 600; }
.author-question b { color: var(--green); }

.author-hero-visual {
  width: 100%;
  margin: 0;
  align-self: center;
}

.author-portrait-frame {
  position: relative;
  height: 470px;
  border: 1px solid rgba(255,255,255,.58);
  box-shadow: 0 22px 54px rgba(0,0,0,.65);
}

.author-portrait-frame::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 14px -14px -14px 14px;
  border: 1px solid rgba(196,255,6,.52);
}

.author-portrait-frame img {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: 50% 32%;
  filter: saturate(.82) contrast(1.04) brightness(.9);
}

.author-hero-visual figcaption {
  margin-top: 20px;
  color: var(--green);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .29em;
  text-align: right;
}

.association-card {
  width: min(100%,620px);
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  gap: 30px;
  margin-top: 14px;
  padding: 24px 28px;
  border: 1px solid #3b3b3b;
  border-left: 2px solid var(--green);
  background: linear-gradient(135deg,#121212,#080808);
  color: #eee !important;
  text-decoration: none !important;
  transition: border-color .2s,transform .2s;
}

.association-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.association-card img {
  width: 210px;
  height: auto;
}

.association-card span { line-height: 1.55; }
.legal-status { color: #999; font-size: 13px; }

.recipe {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
}

.recipe > .heading-line {
  grid-column: 1 / -1;
  margin-bottom: 5px;
}

.recipe-row {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 128px;
  padding: 18px;
  border: 1px solid #343434;
  border-radius: 8px;
  background: linear-gradient(135deg,#111,#080808);
}

.recipe-visual {
  position: relative;
  width: 78px;
  height: 78px;
}

.recipe-visual svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  overflow: visible;
}

.recipe-visual circle {
  fill: none;
  stroke-width: 3.2;
}

.recipe-track { stroke: #293300; }

.recipe-progress {
  stroke: var(--green);
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 1.35s cubic-bezier(.2,.75,.2,1) .18s;
}

.recipe-row.is-visible .recipe-progress {
  stroke-dashoffset: calc(100 - var(--value));
}

.recipe-visual b {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 19px;
  font-weight: 400;
}

.recipe-copy {
  display: grid;
  gap: 5px;
}

.recipe-copy strong {
  color: var(--green);
  font-size: 21px;
  line-height: 1.2;
}

.recipe-copy span {
  grid-column: auto;
  color: #d0d0d0;
  line-height: 1.45;
}

.newsletter-form label > span:first-child {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  color: #bdbdbd;
}

.newsletter-form .newsletter-consent {
  position: relative;
  display: block;
  margin: 7px 0 15px;
  font-size: 12px;
  line-height: 1.45;
  color: #bbb;
}

.newsletter-form .newsletter-consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.newsletter-form .newsletter-consent > span {
  position: relative;
  display: block;
  min-height: 20px;
  padding-left: 29px;
}

.newsletter-form .newsletter-consent > span::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #777;
  border-radius: 3px;
  background: #050505;
  transition: border-color .2s ease,background-color .2s ease,box-shadow .2s ease;
}

.newsletter-form .newsletter-consent > span::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 4px;
  width: 10px;
  height: 5px;
  border-left: 2px solid #050505;
  border-bottom: 2px solid #050505;
  opacity: 0;
  transform: rotate(-45deg) scale(.7);
  transition: opacity .18s ease,transform .18s ease;
}

.newsletter-form .newsletter-consent input:checked + span::before {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(196,255,6,.1);
}

.newsletter-form .newsletter-consent input:checked + span::after {
  opacity: 1;
  transform: rotate(-45deg) scale(1);
}

.newsletter-form .newsletter-consent input:focus-visible + span::before {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.newsletter-form .newsletter-consent a {
  color: var(--green);
  text-decoration: underline;
}

.mailchimp-trap {
  position: absolute;
  left: -5000px;
}

.newsletter-form .form-status {
  min-height: 1.4em;
  margin: 9px 0 0;
  font-size: 12px;
  line-height: 1.4;
}

.newsletter-form .form-status.is-error { color: #ffb0a6; }

.newsletter-success {
  grid-column: 1 / -1;
  align-self: center;
  display: grid;
  grid-template-columns: 58px minmax(0,1fr);
  align-items: center;
  gap: 18px;
  padding: 24px 22px;
  border-left: 2px solid var(--green);
  background: linear-gradient(90deg,rgba(196,255,6,.08),rgba(196,255,6,0));
  animation: newsletter-success-enter .55s cubic-bezier(.2,.75,.25,1) both;
}

.newsletter-success-icon {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.newsletter-success-icon circle {
  stroke-dasharray: 145;
  stroke-dashoffset: 145;
  opacity: .72;
  animation: newsletter-ring-draw .65s .1s ease-out forwards;
}

.newsletter-success-icon path {
  stroke-dasharray: 34;
  stroke-dashoffset: 34;
  animation: newsletter-check-draw .45s .55s ease-out forwards;
}

.newsletter-success strong {
  display: block;
  margin-bottom: 9px;
  color: var(--green);
  font-family: Oswald, sans-serif;
  font-size: clamp(24px,3vw,32px);
  font-weight: 500;
  line-height: 1.15;
}

.newsletter-success p {
  max-width: 560px;
  margin: 0;
  color: #e2e2e2;
  line-height: 1.55;
}

@keyframes newsletter-success-enter {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes newsletter-ring-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes newsletter-check-draw {
  to { stroke-dashoffset: 0; }
}

@media (max-width: 480px) {
  .newsletter-success {
    grid-template-columns: 46px minmax(0,1fr);
    gap: 14px;
    padding: 21px 16px;
  }

  .newsletter-success-icon { width: 42px; height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  .newsletter-success,
  .newsletter-success-icon circle,
  .newsletter-success-icon path { animation: none; }
  .newsletter-success-icon circle,
  .newsletter-success-icon path { stroke-dashoffset: 0; }
}

.contact-intro {
  margin: -8px 0 24px;
  color: #bbb;
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(260px,.72fr) minmax(0,1.28fr);
  align-items: start;
  gap: clamp(50px,8vw,104px);
  padding-top: 76px;
  padding-bottom: 90px;
}

.contact-lead {
  position: sticky;
  top: 132px;
  padding: 8px 0 26px 27px;
  border-left: 2px solid var(--green);
}

.contact-lead .kicker {
  margin: 0 0 13px;
}

.contact-lead h1 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(54px,6vw,80px);
  font-weight: 300;
  line-height: .95;
  letter-spacing: -.035em;
}

.contact-lead > p:not(.kicker):not(.contact-signature) {
  max-width: 360px;
  margin: 0 0 22px;
  color: #c8c8c8;
  font-size: 17px;
  line-height: 1.65;
}

.contact-mail {
  display: inline-block;
  color: var(--green);
  font-size: 16px;
  text-decoration: none;
  border-bottom: 1px solid rgba(196,255,6,.42);
  transition: color .2s,border-color .2s;
}

.contact-mail:hover,
.contact-mail:focus-visible {
  color: #fff;
  border-color: #fff;
}

.contact-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.contact-instagram {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #aaa;
  font-size: 14px;
  transition: color .2s;
}

.contact-instagram .instagram-icon {
  width: 19px;
  height: 19px;
}

.contact-instagram:hover,
.contact-instagram:focus-visible {
  color: var(--green);
}

/* Books overview: an editorial entry instead of a generic page heading. */
.books-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-bottom: 1px solid #2c2c2c;
  background:
    radial-gradient(circle at 79% 50%,rgba(196,255,6,.075),transparent 25%),
    linear-gradient(112deg,#050505 0%,#050505 58%,#0c0d0d 100%);
}

.books-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg,transparent 0,transparent 149px,rgba(255,255,255,.017) 150px);
  pointer-events: none;
}

.books-hero-inner {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
  gap: 70px;
  padding-block: 58px;
}

.books-hero-copy { max-width: 700px; }

.books-hero-copy .kicker {
  margin-bottom: 13px;
  letter-spacing: .16em;
}

.books-hero-copy h1 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(52px,7vw,78px);
  font-weight: 300;
  line-height: .98;
  letter-spacing: -.018em;
}

.books-hero-copy h1 span { color: var(--green); }

.books-hero-copy > p:last-child {
  max-width: 620px;
  margin: 0;
  color: #bdbdbd;
  font-size: 17px;
  line-height: 1.65;
}

.books-hero-mark {
  padding-left: 25px;
  border-left: 1px solid rgba(196,255,6,.48);
  color: #666;
  font-family: 'Oswald',Arial,sans-serif;
  font-size: 12px;
  line-height: 2.2;
  letter-spacing: .2em;
  white-space: nowrap;
}

.books-page {
  padding-top: 70px;
}

.books-heading {
  margin-bottom: 36px;
}

.books-heading h2 {
  font-size: 29px;
}

.contact-signature {
  margin: 64px 0 0;
  color: #696969;
  font-family: 'Oswald',Arial,sans-serif;
  font-size: 13px;
  line-height: 1.65;
  letter-spacing: .2em;
}

.contact-form {
  width: 100%;
  padding: 36px 38px 38px;
  border: 1px solid #303030;
  border-top: 2px solid var(--green);
  background: linear-gradient(145deg,#141414,#090909 68%);
  box-shadow: 0 26px 65px rgba(0,0,0,.42);
}

.contact-form h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 31px;
  font-weight: 300;
}

.contact-field {
  margin-bottom: 16px;
}

.contact-field label {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  color: #c8c8c8;
}

.contact-field input,
.contact-field textarea {
  margin-bottom: 0;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(196,255,6,.13);
}

.contact-field.has-error input,
.contact-field.has-error textarea {
  border-color: #ff786a;
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 4px;
  color: #ff9c91;
  font-size: 12px;
  line-height: 1.4;
}

.contact-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  max-width: 720px;
  margin: 4px 0 2px;
  color: #bbb;
  font-size: 12px;
  line-height: 1.5;
}

.contact-consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--green);
}

.contact-consent a { color: var(--green); text-decoration: underline; }
.form-honey { position: absolute; left: -5000px; }
.contact-form-status {
  min-height: 1.5em;
  margin: 14px 0 -8px;
  color: #ffb0a6;
  font-size: 14px;
  line-height: 1.5;
}
.contact-form .button:disabled { opacity: .65; cursor: wait; }
.contact-note { margin: 8px 0 0; color: #777; font-size: 11px; }

.thanks-page {
  min-height: calc(100vh - 90px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 80px;
  text-align: center;
}

.thanks-page h1 { margin: 8px 0 10px; font-size: 44px; }
.thanks-page > p:not(.kicker) { margin: 0 0 28px; font-size: 18px; }
.thanks-mark { width: 72px; height: 72px; display: grid; place-items: center; margin-bottom: 22px; border: 2px solid var(--green); border-radius: 50%; color: var(--green); font-size: 34px; }

.story-media {
  padding: 66px 0 82px;
  border-block: 1px solid #292929;
  background:
    radial-gradient(circle at 17% 50%,rgba(196,255,6,.07),transparent 27%),
    #070707;
}

.story-media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  width: min(100%,820px);
  margin-inline: auto;
}

.audio-card,
.trailer-card {
  min-height: 270px;
  border: 1px solid #383838;
  background: linear-gradient(135deg,#151515,#090909 68%);
  box-shadow: 0 18px 45px rgba(0,0,0,.38);
}

.audio-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  overflow: hidden;
}

.audio-cover {
  position: relative;
  min-height: 0;
  aspect-ratio: 1;
  overflow: hidden;
  background: #020404;
}

.audio-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,transparent 42%,rgba(0,0,0,.88));
}

.audio-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.05);
}

.audio-cover span {
  position: absolute;
  z-index: 1;
  left: 16px;
  bottom: 15px;
  color: var(--green);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
}

.audio-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 31px 28px;
}

.audio-panel h3,
.trailer-poster h3 {
  margin: 2px 0 27px;
  color: #fff;
  font-size: 31px;
  font-weight: 300;
}

.audio-controls {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 18px;
}

.audio-toggle {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--green);
  border-radius: 50%;
  background: var(--green);
  color: #050505;
  cursor: pointer;
  transition: background .2s,color .2s,transform .2s;
}

.audio-toggle:hover,
.audio-toggle:focus-visible {
  background: #050505;
  color: var(--green);
  transform: scale(1.05);
  outline: none;
}

.audio-toggle span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
}

.is-playing .audio-toggle span {
  width: 12px;
  height: 16px;
  margin-left: 0;
  border: 0;
  border-inline: 4px solid currentColor;
}

.audio-timeline { min-width: 0; }

.audio-range {
  --progress: 0%;
  width: 100%;
  height: 4px;
  display: block;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg,var(--green) var(--progress),#3b3b3b var(--progress));
  appearance: none;
  cursor: pointer;
}

.audio-range::-webkit-slider-thumb {
  width: 15px;
  height: 15px;
  border: 3px solid #080808;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 1px var(--green);
  appearance: none;
}

.audio-range::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: 3px solid #080808;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 1px var(--green);
}

.audio-range:focus-visible { outline: 2px solid #fff; outline-offset: 6px; }

.audio-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  color: #8e8e8e;
  font-size: 11px;
  letter-spacing: .04em;
}

.audio-status { color: var(--green); text-align: right; }

.trailer-card {
  position: relative;
  overflow: hidden;
}

.trailer-poster {
  min-height: 320px;
  display: grid;
  grid-template-columns: 165px 1fr;
  align-items: center;
  gap: 42px;
  padding: 38px 54px;
}

.trailer-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%,rgba(196,255,6,.08),transparent 28%);
  pointer-events: none;
}

.trailer-poster > * { position: relative; z-index: 1; }
.trailer-poster img { width: 165px; border: 1px solid #777; box-shadow: 0 9px 28px rgba(0,0,0,.58); }
.trailer-poster h3 { margin-bottom: 18px; font-size: 31px; }

.trailer-load {
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid var(--green);
  border-radius: 3px;
  background: var(--green);
  color: #090909;
  font: 600 12px Montserrat,Arial,sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s,color .2s;
}

.trailer-load span { margin-right: 7px; }
.trailer-load:hover,
.trailer-load:focus-visible { background: #090909; color: var(--green); outline: none; }

.trailer-privacy {
  max-width: 315px;
  margin: 12px 0 0;
  color: #858585;
  font-size: 10px;
  line-height: 1.45;
}

.trailer-privacy a { color: #bbb; text-decoration: underline; }
.trailer-card.is-loaded { aspect-ratio: 16 / 9; min-height: 0; }
.trailer-card iframe { width: 100%; height: 100%; display: block; border: 0; }

.home-page .header:not(.scrolled) {
  background: #000;
}

.home-page .header:not(.scrolled) .nav a,
.home-page .header:not(.scrolled) .nav a.active {
  color: #fff;
}

.home-page .header:not(.scrolled) .nav a:hover {
  color: var(--green);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal.delay-1 { transition-delay: .08s; }
.scroll-reveal.delay-2 { transition-delay: .16s; }

@media (min-width: 1001px) {
  .home-hero {
    min-height: max(700px,calc(100vh - 90px));
    min-height: max(700px,calc(100svh - 90px));
  }

  .home-hero::before {
    inset: 0 calc(50% - 560px);
    background-position: 66% center;
    background-size: 600px auto;
    opacity: .5;
  }

  .home-hero .hero-grid {
    width: min(calc(100% - 64px),1120px);
    max-width: 1120px;
    min-height: max(700px,calc(100vh - 90px));
    min-height: max(700px,calc(100svh - 90px));
    grid-template-columns: minmax(0,680px) 315px;
    gap: 90px;
    padding-block: clamp(54px,7vh,82px);
  }

  .home-hero .hero-copy { max-width: 680px; }
  .home-hero .hero-copy h1 { font-size: 78px; }
  .home-hero .hero-copy h2 { font-size: 29px; }
  .home-hero .hero-copy > p { font-size: 18.5px; line-height: 1.65; }
  .home-hero .hero-buttons { margin-top: 28px; gap: 16px; }
  .home-hero .hero-book { width: 315px; }
}

@media (max-width: 1000px) and (min-width: 781px) {
  .home-hero .hero-grid {
    width: min(calc(100% - 40px), var(--width));
    grid-template-columns: minmax(480px, 1fr) 225px;
    gap: 34px;
  }

  .home-hero .hero-book { width: 225px; }
}

@media (max-width: 780px) {
  body { font-size: 16px; line-height: 1.6; }

  .home-page .header:not(.scrolled) {
    background: rgba(0,0,0,.94);
  }

  .header,
  .header.scrolled {
    height: calc(70px + env(safe-area-inset-top, 0px));
    padding-top: env(safe-area-inset-top, 0px);
  }

  .header-inner {
    width: calc(100% - 24px);
    height: 70px;
  }

  .logo {
    width: min(56vw, 190px);
  }

  .logo.wordmark {
    width: auto;
    min-width: 0;
    max-width: calc(100vw - 95px);
    font-size: 14px;
    letter-spacing: .38em;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    padding: 9px 5px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 4px;
  }

  .menu-button span {
    width: 25px;
    margin: 5px auto;
    transition: transform .22s ease, opacity .22s ease;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .nav {
    inset: calc(70px + env(safe-area-inset-top, 0px)) 12px auto;
    max-height: calc(100vh - 82px - env(safe-area-inset-top, 0px));
    overflow-y: auto;
    padding: 12px 18px 17px;
    gap: 0;
    background: rgba(10,10,10,.98);
    border: 1px solid #3c3c3c;
    border-top: 2px solid var(--green);
    box-shadow: 0 18px 40px rgba(0,0,0,.72);
  }

  .nav a {
    width: 100%;
    padding: 11px 2px;
    border-bottom: 1px solid #2d2d2d;
    font-size: 15px;
    letter-spacing: .7px;
  }

  .nav a.active { color: var(--green); }
  .nav .instagram { margin: 4px 0 0; border-bottom: 0; }

  .home-hero {
    height: calc(100svh - 70px - env(safe-area-inset-top, 0px));
    min-height: 0;
  }

  main {
    padding-top: calc(70px + env(safe-area-inset-top, 0px));
  }

  .thanks-page { min-height: calc(100svh - 70px - env(safe-area-inset-top, 0px)); }
  .thanks-page h1 { font-size: 34px; }

  .home-hero::before {
    background-size: 430px auto;
    background-position: 50% 0;
    opacity: .42;
  }

  .home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg,rgba(0,0,0,.08) 0%,rgba(0,0,0,.34) 37%,rgba(0,0,0,.88) 100%);
    pointer-events: none;
  }

  .home-hero .hero-grid {
    width: calc(100% - 32px);
    height: 100%;
    min-height: 0;
    padding: 10px 0 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .hero-copy {
    width: 100%;
    text-align: center;
  }

  .home-hero .hero-copy .name { margin-bottom: 4px; }
  .home-hero .hero-copy h1 { margin-top: 2px; margin-bottom: 3px; font-size: 40px; }
  .home-hero .hero-copy h2 { margin-bottom: 9px; font-size: 18px; }

  .home-hero .hero-copy > p {
    max-width: 570px;
    margin-inline: auto;
    font-size: 16px;
    line-height: 1.34;
  }

  .hero-copy p br {
    display: none;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 440px;
    margin-inline: auto;
    gap: 6px;
    margin-top: 10px;
  }

  .hero-buttons .button {
    width: 100%;
    min-height: 38px;
    padding-block: 8px;
  }

  .home-hero .hero-book {
    order: -1;
    width: min(31vw, 128px);
    margin: 0 auto 8px;
    transform: none;
  }

  .home-hero .hero-book:hover { transform: scale(1.045); }

  .home-card-wrap {
    padding-inline: 16px;
  }

  .home-card {
    width: 100%;
  }

  .detail-top,
  .synopsis,
  .author-copy-section,
  .contact-page,
  .legal {
    padding-left: 4px;
    padding-right: 4px;
  }

  .contact-page {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 42px;
    padding-bottom: 64px;
  }

  .contact-lead {
    position: static;
    padding: 5px 0 8px 20px;
  }

  .contact-lead h1 {
    margin-bottom: 18px;
    font-size: clamp(49px,14vw,65px);
  }

  .contact-signature { display: none; }

  .contact-form {
    padding: 27px 20px 30px;
  }

  .books-hero,
  .books-hero-inner {
    min-height: 360px;
  }

  .books-hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 48px;
  }

  .books-hero-copy h1 {
    font-size: clamp(47px,13vw,66px);
  }

  .books-hero-copy > p:last-child {
    font-size: 16px;
    line-height: 1.55;
  }

  .books-hero-mark { display: none; }

  .books-page { padding-top: 54px; }

  .book-detail-hero .detail-top { gap: 30px; padding-top: 38px; padding-bottom: 54px; }
  .detail-cover { width: min(44vw,170px); }
  .book-switch {
    position: relative;
    inset: auto;
    width: min(calc(100% - 40px),440px);
    min-height: 54px;
    margin: 0 auto 40px;
    padding: 0 4px;
    justify-content: space-between;
    border-block: 1px solid #262626;
    color: rgba(255,255,255,.62);
    transform: none;
  }
  .book-switch.prev { left: auto; justify-content: flex-start; }
  .book-switch.next { right: auto; }
  .book-switch b { width: 34px; height: 54px; flex-basis: 34px; font-size: 30px; }
  .book-switch-preview,
  .book-switch:hover .book-switch-preview,
  .book-switch:focus-visible .book-switch-preview {
    width: auto;
    height: 54px;
    flex: 1;
    opacity: 1;
    padding: 0 10px;
    background: transparent;
    box-shadow: none;
  }
  .book-switch-preview img { display: none; }
  .book-switch-copy { width: auto; flex: 1; }
  .book-switch-copy small { font-size: 9px; }
  .book-switch-copy strong { margin-top: 2px; font-size: 13px; }
  .buy-buttons.preorder-only { max-width: none; }

  .facts b {
    white-space: normal;
  }

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

  .recipe > .heading-line { grid-column: 1; }

  .recipe-row {
    grid-template-columns: 72px 1fr;
    min-height: 112px;
    padding: 15px;
  }

  .recipe-visual {
    width: 68px;
    height: 68px;
  }

  .author-hero {
    min-height: 0;
  }

  .author-hero-grid {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 46px;
    padding-block: 38px 58px;
  }

  .author-hero-visual {
    order: -1;
    width: min(82vw,340px);
  }

  .author-portrait-frame { height: min(102vw,410px); }
  .author-hero-visual figcaption { font-size: 9px; letter-spacing: .22em; }
  .author-hero-copy h1 { font-size: clamp(51px,16vw,70px); }
  .author-hero-copy h2 { margin-bottom: 24px; font-size: 24px; }
  .author-hero-statement { padding-left: 17px; }

  .association-card {
    grid-template-columns: 1fr;
    gap: 19px;
    padding: 22px;
  }

  .association-card img { width: min(100%,250px); }

  .audio-card,
  .trailer-card { min-height: 250px; }
  .audio-card { grid-template-columns: 190px 1fr; }
  .trailer-poster { min-height: 270px; grid-template-columns: 130px 1fr; gap: 28px; padding: 30px; }
  .trailer-poster img { width: 130px; }
}

@media (max-width: 480px) {
  .logo.wordmark { font-size: 15px; letter-spacing: .32em; }
  .home-hero { height: calc(100svh - 70px - env(safe-area-inset-top, 0px)); min-height: 0; }
  .home-hero .hero-grid {
    width: calc(100% - 28px);
    padding: 4px 0 10px;
    justify-content: center;
    gap: 0;
  }
  .home-hero .hero-book {
    width: min(35vw, 136px);
    margin-bottom: 46px;
    position: relative;
    top: 0;
    transform: scale(1.13);
    transform-origin: top center;
  }
  .home-hero .hero-book:hover { transform: scale(1.15); }
  .home-hero .hero-copy .name { margin-bottom: 7px; font-size: 17px; }
  .home-hero .hero-copy h1 { font-size: 35px; margin-top: 1px; margin-bottom: 6px; }
  .home-hero .hero-copy h2 { font-size: 16px; margin-bottom: 16px; }
  .home-hero .hero-copy > p {
    max-width: 385px;
    font-size: 16px;
    line-height: 1.5;
    text-wrap: pretty;
  }
  .home-hero .new-tag {
    top: -12px;
    right: -11px;
    padding: 5px 12px;
    color: #fff;
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 2px;
  }
  .home-hero .hero-buttons {
    margin-top: 16px;
    gap: 8px;
  }
  .home-card h2 { margin-top: 18px; }
  .book-list { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .book-tile p { font-size: 14px; }
  .story-media { padding: 48px 0 58px; }
  .audio-card { grid-template-columns: 1fr; }
  .audio-cover { width: 100%; min-height: 0; }
  .audio-panel { padding: 26px 20px 30px; }
  .audio-panel h3 { margin-bottom: 22px; font-size: 27px; }
  .audio-controls { grid-template-columns: 48px 1fr; gap: 13px; }
  .audio-toggle { width: 48px; height: 48px; }
  .audio-meta { align-items: flex-start; flex-direction: column; gap: 3px; }
  .audio-status { text-align: left; }
  .trailer-poster { grid-template-columns: 82px 1fr; min-height: 230px; gap: 18px; padding: 20px; }
  .trailer-poster img { width: 82px; }
  .trailer-poster h3 { font-size: 23px; }
}

@media (max-width: 480px) and (max-height: 700px) {
  .home-hero .hero-grid { padding-block: 5px 8px; }
  .home-hero .hero-book { width: min(23vw,90px); margin-bottom: 4px; }
  .home-hero .hero-copy .name { margin-bottom: 2px; font-size: 12px; }
  .home-hero .hero-copy h1 { font-size: 31px; }
  .home-hero .hero-copy h2 { margin-bottom: 5px; font-size: 15px; }
  .home-hero .hero-copy > p { line-height: 1.23; }
  .home-hero .hero-buttons { margin-top: 7px; gap: 5px; }
  .home-hero .hero-buttons .button { min-height: 35px; padding-block: 6px; }
}

@keyframes new-tag-pulse {
  0%,100% { transform: rotate(5deg) scale(1); box-shadow: 0 0 0 0 rgba(196,255,6,0); }
  50% { transform: rotate(5deg) scale(1.035); box-shadow: 0 0 0 5px rgba(196,255,6,.08); }
}

.new-tag {
  animation: new-tag-pulse 2.8s ease-in-out infinite;
  transform-origin: center;
}

.footer-bottom .content-width > span:last-child {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom .instagram {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.footer-bottom .instagram-icon {
  width: 19px;
  height: 19px;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .recipe-progress { transition: none; }
  .new-tag { animation: none; }
}

/* Recognizable Instagram camera glyph in the header and footer. */
.instagram {
  display: inline-grid;
  place-items: center;
}

.instagram-icon {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Unlisted, mobile-first landing page for printed QR codes. */
.linkhub {
  min-height: 100svh;
  display: flex;
  justify-content: center;
  padding: clamp(28px,7vw,62px) 16px 34px;
  background:
    radial-gradient(circle at 50% 7%,rgba(196,255,6,.08),transparent 25%),
    linear-gradient(180deg,#0b0c0c,#030303 48%,#080808);
}

.linkhub-card {
  width: min(100%,520px);
  text-align: center;
}

.linkhub-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.linkhub-avatar {
  width: 116px;
  height: 116px;
  object-fit: cover;
  object-position: 50% 34%;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(196,255,6,.055),0 16px 40px rgba(0,0,0,.55);
}

.linkhub-profile h1 {
  margin: 20px 0 2px;
  color: #fff;
  font-family: Montserrat,Arial,sans-serif;
  font-size: 27px;
  font-weight: 300;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.linkhub-role {
  margin: 3px 0 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.linkhub-book {
  margin: 35px 0 0;
  padding: 29px 0 31px;
  border-block: 1px solid #303030;
}

.linkhub-book h2 {
  margin: 4px 0 5px;
  color: #fff;
  font-size: 33px;
  font-weight: 300;
}

.linkhub-book > p:not(.kicker) {
  margin: 0 0 22px;
  color: #aaa;
  font-size: 15px;
}

.linkhub-actions {
  display: grid;
  gap: 9px;
}

.linkhub-actions .button {
  width: 100%;
  min-height: 49px;
  border-radius: 3px;
}

.linkhub-newsletter {
  padding: 32px 0 34px;
  border-bottom: 1px solid #303030;
  text-align: left;
}

.linkhub-newsletter h2 {
  margin: 5px 0 21px;
  color: #fff;
  font-size: 27px;
  font-weight: 300;
}

.linkhub-newsletter .newsletter-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.linkhub-newsletter .newsletter-form label span {
  font-size: 12px;
}

.linkhub-newsletter .newsletter-form input {
  width: 100%;
  height: 48px;
  margin-bottom: 0;
  padding: 12px 14px;
  border: 1px solid #454545;
  background: #030303;
  color: #fff;
  font: 300 15px Montserrat,Arial,sans-serif;
}

.linkhub-newsletter .newsletter-consent,
.linkhub-newsletter .newsletter-form .button,
.linkhub-newsletter .mailchimp-trap {
  grid-column: 1 / -1;
}

.linkhub-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  margin-top: 25px;
  border: 1px solid #343434;
  color: #ddd;
  font-size: 14px;
  transition: border-color .2s,color .2s;
}

.linkhub-social:hover,
.linkhub-social:focus-visible {
  border-color: var(--green);
  color: var(--green);
}

.linkhub-social .instagram-icon {
  width: 21px;
  height: 21px;
}

.linkhub-legal {
  margin: 22px 0 0;
  color: #707070;
  font-size: 12px;
}

.linkhub-legal a {
  margin-inline: 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 480px) {
  .linkhub { padding-top: 25px; }
  .linkhub-avatar { width: 102px; height: 102px; }
  .linkhub-profile h1 { font-size: 22px; letter-spacing: .2em; }
  .linkhub-book { margin-top: 27px; padding-block: 24px 27px; }
  .linkhub-book h2 { font-size: 30px; }
  .linkhub-newsletter .newsletter-form { grid-template-columns: 1fr; }
  .linkhub-newsletter .newsletter-consent,
  .linkhub-newsletter .newsletter-form .button { grid-column: 1; }
}

@media (max-width: 780px) {
  .nav .instagram {
    width: 44px;
    height: 44px;
    margin-top: 4px;
  }

  .nav .instagram-icon {
    width: 24px;
    height: 24px;
  }
}
