:root {
  --paper: #f6eee4;
  --cream: #fffaf2;
  --linen: #eadfce;
  --plum-ink: #4a2a4e;
  --plum: #83558b;
  --violet: #a77ab0;
  --lavender: #decce8;
  --rose: #e8b8ca;
  --sage: #7f8d73;
  --gold: #b77e2f;
  --text: #2b2028;
  --muted: #6f626d;
  --light-text: #fffaf2;
  --line: rgba(47, 27, 48, 0.16);
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "DM Sans", sans-serif;
  --font-script: "Great Vibes", cursive;
  --space-xl: 7.5rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: linear-gradient(180deg, var(--paper), #f8f1e9 48%, var(--linen));
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(183, 126, 47, 0.7);
  outline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
}

p {
  margin: 0;
  color: rgba(43, 32, 40, 0.74);
  font-size: 1.04rem;
}

.container {
  width: min(1420px, calc(100% - 48px));
  margin: 0 auto;
}

.reveal-on-scroll {
  --reveal-delay: 0ms;
  --reveal-distance: 28px;
  opacity: 0;
  transform: translateY(var(--reveal-distance));
  filter: blur(10px);
  transition:
    opacity 620ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay),
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay),
    filter 620ms ease var(--reveal-delay);
  will-change: opacity, transform, filter;
}

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

.reveal-on-scroll:is(
    .book-card,
    .offer-card,
    .finder-card,
    .audio-card,
    .physical-card,
    .reader-confidence-grid article,
    .testimonial-template-grid article,
    .ebook-benefits article,
    .authority-grid article,
    .inside-preview-grid article,
    .sales-faq-list details
  ) {
  --reveal-distance: 18px;
}

.portrait-wrap,
.hero-copy {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-fade-up 760ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-copy {
  animation-delay: 120ms;
}

.hero-proof span,
.hero-actions .btn {
  opacity: 0;
  transform: translateY(18px);
  animation: hero-fade-up 620ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-proof span:nth-child(1),
.hero-actions .btn:nth-child(1) {
  animation-delay: 260ms;
}

.hero-proof span:nth-child(2),
.hero-actions .btn:nth-child(2) {
  animation-delay: 340ms;
}

.hero-proof span:nth-child(3) {
  animation-delay: 420ms;
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  transform: translateY(-170%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--plum-ink);
  color: var(--light-text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 4vw;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--plum-ink);
}

.logo span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  transform: none;
}

.logo small {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  color: rgba(74, 42, 78, 0.84);
  font-family: var(--font-serif);
  font-size: 1.02rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding-bottom: 5px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 180ms ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.header-shop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 18px;
  border: 1px solid rgba(74, 42, 78, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.92);
  color: var(--plum-ink);
  box-shadow: 0 14px 30px rgba(74, 42, 78, 0.08);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.7), transparent 24%),
    radial-gradient(circle at 85% 22%, rgba(255, 250, 242, 0.32), transparent 20%),
    linear-gradient(135deg, #f7efe5 0%, #f5ebe1 34%, #d3b2d8 66%, #b98fc3 100%);
}

.hero-bg {
  position: absolute;
  inset: auto -10% -18% auto;
  width: 56%;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(74, 42, 78, 0.12), rgba(74, 42, 78, 0.04));
  border-radius: 50%;
  filter: blur(10px);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: center;
  padding: 122px 0 58px;
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(240px, 0.84fr) minmax(250px, 1fr);
  gap: 18px;
  align-items: end;
}

.portrait-wrap {
  position: relative;
  width: min(460px, 100%);
  margin-left: auto;
}

.hero-portrait-panel {
  width: 100%;
  max-width: 332px;
  margin-left: 0;
}

.portrait-slot {
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 10px solid var(--paper);
  border-radius: 230px 230px 8px 8px;
  box-shadow: 22px 24px 0 rgba(47, 27, 48, 0.15);
}

.portrait-slot img,
.journal-stack .drop-image img,
.media-drop.drop-image img {
  object-position: center center;
}

.portrait-note {
  position: absolute;
  left: -28px;
  bottom: 34px;
  max-width: 218px;
  padding: 14px 18px;
  background: var(--cream);
  color: var(--plum-ink);
  font-family: var(--font-serif);
  font-size: 1.22rem;
  line-height: 1.1;
  box-shadow: 0 18px 40px rgba(47, 27, 48, 0.14);
}

.hero-copy {
  max-width: 680px;
  padding-left: 0;
  color: var(--plum-ink);
}

.script-text {
  display: block;
  margin-bottom: 16px;
  color: #d8a94e;
  font-family: var(--font-script);
  font-size: 3.5rem;
  line-height: 1;
}

.hero h1 {
  max-width: 620px;
  color: var(--plum-ink);
  font-size: clamp(4.6rem, 7.2vw, 6.3rem);
  text-shadow: 0 18px 42px rgba(255, 255, 255, 0.22);
}

.hero p {
  max-width: 590px;
  margin-top: 16px;
  color: rgba(43, 32, 40, 0.76);
  font-size: 1.04rem;
}

.hero-editorial-note {
  max-width: 600px;
  margin-top: 18px;
  color: rgba(43, 32, 40, 0.66);
  font-size: 0.98rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(74, 42, 78, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: rgba(74, 42, 78, 0.78);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-shelf-card,
.hero-signal-card {
  border: 1px solid rgba(255, 250, 242, 0.24);
  border-radius: 8px;
  background: rgba(100, 56, 107, 0.2);
  box-shadow: 0 22px 54px rgba(19, 8, 22, 0.16);
  backdrop-filter: blur(18px);
}

.hero-shelf-card {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 22px;
}

.hero-shelf-label,
.hero-signal-card span {
  color: #f2c987;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-shelf-card strong,
.hero-signal-card strong {
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.7vw, 2.4rem);
  font-weight: 600;
  line-height: 0.98;
}

.hero-book-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-mini-book {
  display: grid;
  gap: 10px;
  align-content: start;
}

.hero-mini-book-cover.drop-image {
  min-height: 0;
  border: 1px solid rgba(255, 250, 242, 0.18);
  box-shadow: 10px 12px 0 rgba(16, 8, 18, 0.18);
}

.hero-mini-book h3 {
  color: rgba(255, 250, 242, 0.88);
  font-size: 0.92rem;
  line-height: 1.08;
}

.hero-shelf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-signal-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 18px 20px;
}

.hero-signal-card p {
  margin-top: 0;
  color: rgba(255, 250, 242, 0.76);
  font-size: 0.98rem;
}

.hero-actions,
.book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

@media (max-width: 1200px) {
  .site-header {
    padding-inline: 26px;
  }

  .nav-links {
    gap: clamp(14px, 2vw, 24px);
    font-size: 0.92rem;
    letter-spacing: 0.1em;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.88fr);
    gap: 34px;
    padding: 106px 0 44px;
  }

  .hero-stage {
    grid-template-columns: minmax(220px, 0.84fr) minmax(220px, 1fr);
    gap: 14px;
  }

  .hero h1 {
    font-size: clamp(4.4rem, 6vw, 5.8rem);
  }

  .script-text {
    font-size: 3rem;
  }

  .section-header h2 {
    font-size: clamp(4.1rem, 6vw, 5.2rem);
  }

  .books-section .section-header h2 {
    font-size: clamp(4rem, 5.7vw, 5rem);
  }

  .sticky-shop {
    bottom: 12px;
    gap: 6px;
    max-width: calc(100vw - 132px);
    padding: 7px 8px;
  }

  .sticky-shop span {
    display: none;
  }

  .sticky-shop .btn {
    min-height: 36px;
    padding-inline: 13px;
    font-size: 0.56rem;
    letter-spacing: 0.11em;
  }

  .floating-book {
    right: 14px;
    bottom: 12px;
  }

  .floating-book-trigger {
    width: 68px;
    height: 68px;
  }

  .floating-book-trigger strong {
    font-size: 1.08rem;
  }

  .floating-book-trigger span {
    max-width: 46px;
    font-size: 0.46rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 26px;
  border: 1px solid currentColor;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, opacity 160ms ease;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn.cream,
.btn.light {
  background: var(--cream);
  color: var(--plum-ink);
}

.btn.gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--light-text);
}

.btn.outline {
  border-color: rgba(74, 42, 78, 0.28);
  background: transparent;
  color: var(--plum-ink);
}

.btn.outline-light {
  color: var(--light-text);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--plum);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.section-label.light {
  color: var(--lavender);
}

.drop-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
  overflow: hidden;
  border: 1px dashed rgba(47, 27, 48, 0.32);
  background:
    linear-gradient(135deg, rgba(143, 102, 152, 0.12), transparent 35%),
    rgba(255, 250, 242, 0.7);
}

.drop-image.has-image {
  border-style: solid;
  background: transparent;
}

.drop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.drop-image object {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  background: var(--cream);
}

.drop-image.portrait {
  aspect-ratio: 3 / 4;
}

.drop-image.book {
  aspect-ratio: 3 / 4.25;
}

.drop-image.square {
  aspect-ratio: 1;
}

.drop-image.wide {
  aspect-ratio: 16 / 10;
}

.drop-placeholder {
  display: grid;
  gap: 12px;
  justify-items: center;
  max-width: 100%;
  padding: 28px;
  color: var(--plum-ink);
  text-align: center;
}

.drop-placeholder span {
  color: var(--plum);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.drop-placeholder strong {
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--plum-ink);
  font-family: var(--font-sans);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.2;
}

.proof-strip {
  padding: 34px 0;
  border-top: 1px solid rgba(74, 42, 78, 0.08);
  border-bottom: 1px solid rgba(74, 42, 78, 0.08);
  background: rgba(255, 250, 242, 0.86);
}

.conversion-rail {
  position: relative;
  z-index: 3;
  padding: 18px 0;
  background: var(--plum-ink);
  color: var(--cream);
}

.conversion-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.conversion-grid p {
  color: rgba(255, 250, 242, 0.86);
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1;
}

.conversion-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.proof-item {
  display: grid;
  gap: 8px;
  min-height: 78px;
  align-content: center;
  padding: 18px 20px;
  border: 1px solid rgba(74, 42, 78, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.proof-item strong {
  color: var(--plum-ink);
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  line-height: 0.9;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.journal-section,
.wisdom-section,
.media-section,
.sonolusso-bridge {
  padding: var(--space-xl) 0;
}

.journal-grid,
.media-grid,
.bridge-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(44px, 7vw, 118px);
  align-items: center;
}

.journal-grid > *,
.media-grid > *,
.bridge-grid > *,
.contact-grid > *,
.book-feature > *,
.audio-card > * {
  min-width: 0;
}

.journal-copy h2,
.media-copy h2,
.bridge-grid h2,
.contact-section h2 {
  max-width: 780px;
  color: var(--plum-ink);
  font-size: 5.5rem;
  overflow-wrap: break-word;
}

.journal-copy p,
.media-copy p,
.bridge-grid p,
.contact-section p {
  max-width: 650px;
  margin-top: 24px;
}

blockquote {
  margin: 34px 0;
  padding: 24px 26px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 250, 242, 0.72);
}

blockquote p {
  color: var(--plum-ink);
  font-family: var(--font-serif);
  font-size: 2.25rem;
  line-height: 1.1;
}

blockquote cite,
.quote-band cite {
  display: block;
  margin-top: 12px;
  color: var(--plum);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.journal-stack {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 18px;
  align-items: end;
  min-height: auto;
}

.journal-stack.single {
  grid-template-columns: minmax(260px, 430px);
  justify-content: center;
}

.journal-stack .drop-image {
  position: relative;
  width: 100%;
  border: 8px solid var(--paper);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(47, 27, 48, 0.16);
}

.journal-stack .drop-image:first-child {
  align-self: start;
}

.journal-stack .drop-image:last-child {
  margin-top: 76px;
}

.journal-stack.single .drop-image:last-child {
  margin-top: 0;
}

.books-section {
  padding: var(--space-xl) 0;
  background:
    linear-gradient(135deg, rgba(232, 184, 202, 0.34), transparent 38%),
    linear-gradient(180deg, #fbf4fa, #efe0f2 54%, #f8f1e9);
  color: var(--text);
}

.book-finder-section {
  padding: var(--space-xl) 0;
  background: var(--cream);
}

.book-finder-section .section-header p {
  color: rgba(43, 32, 40, 0.74);
}

.books-section .section-header,
.book-finder-section .section-header {
  gap: 14px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.books-section .section-header h2 {
  max-width: 860px;
  font-size: clamp(3.35rem, 5.3vw, 4.9rem);
  line-height: 0.95;
}

.book-finder-section .section-header h2 {
  max-width: 880px;
  font-size: clamp(3.1rem, 4.9vw, 4.45rem);
  line-height: 0.96;
}

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

.finder-card {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 332px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.82);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 180ms ease;
}

.finder-card.active {
  border-color: rgba(183, 126, 47, 0.72);
  background: var(--cream);
  transform: translateY(-4px);
}

.finder-card:hover {
  box-shadow: 0 18px 38px rgba(47, 27, 48, 0.08);
}

.finder-card span {
  color: var(--plum);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.finder-card h3 {
  color: var(--plum-ink);
  font-size: 2.18rem;
  line-height: 0.98;
}

.finder-card p {
  margin: 0;
}

.finder-choice {
  width: fit-content;
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid var(--plum);
  border-radius: 999px;
  background: var(--plum);
  color: var(--cream);
  cursor: pointer;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.finder-card.active .finder-choice {
  background: var(--gold);
  border-color: var(--gold);
}

.finder-result {
  display: grid;
  grid-template-columns: 0.76fr 1fr auto;
  gap: 22px;
  align-items: center;
  margin-top: 22px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(74, 42, 78, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(232, 184, 202, 0.18), transparent 46%),
    rgba(255, 250, 242, 0.92);
  color: var(--plum-ink);
}

.finder-result h3 {
  margin-top: 8px;
  color: var(--plum-ink);
  font-size: clamp(1.95rem, 3.4vw, 2.9rem);
}

.finder-result p {
  color: rgba(43, 32, 40, 0.74);
}

.finder-result-copy {
  display: grid;
  gap: 14px;
}

.finder-result-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.finder-result-list li {
  color: rgba(43, 32, 40, 0.78);
  font-size: 0.95rem;
}

.finder-result-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.section-header {
  display: grid;
  gap: 16px;
  margin-bottom: clamp(40px, 6vw, 82px);
}

.section-header.centered {
  justify-items: center;
  text-align: center;
}

.section-header h2 {
  max-width: 980px;
  font-size: 6.2rem;
}

.section-header p {
  max-width: 760px;
  color: rgba(255, 250, 242, 0.74);
}

.wisdom-section .section-header p {
  color: rgba(43, 32, 40, 0.74);
}

.book-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.books-curation-rail {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 0.9fr) auto;
  gap: 18px;
  align-items: center;
  margin: 0 0 30px;
  padding: 22px 24px;
  border: 1px solid rgba(74, 42, 78, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(232, 184, 202, 0.18), transparent 44%),
    rgba(255, 250, 242, 0.84);
  box-shadow: 0 18px 44px rgba(74, 42, 78, 0.08);
}

.books-curation-copy {
  display: grid;
  gap: 12px;
}

.books-curation-copy h3 {
  color: var(--plum-ink);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.97;
}

.books-curation-copy p {
  max-width: 560px;
  color: rgba(43, 32, 40, 0.74);
}

.books-curation-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.books-curation-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(74, 42, 78, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--plum);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.books-curation-actions {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.book-tabs button {
  min-height: 40px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 250, 242, 0.26);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 250, 242, 0.76);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.book-tabs button.active,
.book-tabs button:hover {
  background: var(--cream);
  color: var(--plum-ink);
}

.book-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) 1.28fr;
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  margin-bottom: 58px;
  padding: clamp(24px, 4vw, 54px);
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.045);
}

.books-section .section-label.light,
.books-section .product-section-title .section-label {
  color: var(--plum);
}

.books-section .section-header p,
.books-section .book-feature-copy p,
.books-section .book-card p,
.books-section .book-card small,
.books-section .next-project p,
.books-section .ebook-value-copy p,
.books-section .ebook-benefits p,
.books-section .authority-copy p,
.books-section .authority-grid p,
.books-section .inside-preview-heading p,
.books-section .inside-preview-grid p,
.books-section .sample-copy p,
.books-section .sample-excerpt small,
.books-section .offer-copy p,
.books-section .offer-card p,
.books-section .quick-order p,
.books-section .ebook-capture p,
.books-section .physical-card p,
.books-section .book-video-copy p,
.books-section .sales-faq-heading p,
.books-section .sales-faq-list p {
  color: rgba(43, 32, 40, 0.72);
}

.books-section .book-tabs button {
  border-color: rgba(74, 42, 78, 0.24);
  color: var(--plum);
}

.books-section .book-tabs button.active,
.books-section .book-tabs button:hover {
  background: var(--plum);
  color: var(--cream);
}

.books-section .book-feature,
.books-section .book-card,
.books-section .ebook-benefits article,
.books-section .authority-panel,
.books-section .authority-grid article,
.books-section .inside-preview,
.books-section .inside-preview-grid article,
.books-section .sample-chapter,
.books-section .sample-excerpt,
.books-section .book-offers,
.books-section .offer-card,
.books-section .quick-order,
.books-section .ebook-capture,
.books-section .physical-card,
.books-section .book-video-feature,
.books-section .sales-faq,
.books-section .sales-faq-list details {
  border-color: rgba(74, 42, 78, 0.14);
  background: rgba(255, 250, 242, 0.72);
}

.books-section .book-feature-copy h3,
.books-section .ebook-value-copy h3,
.books-section .authority-copy h3,
.books-section .inside-preview-heading h3,
.books-section .sample-copy h3,
.books-section .ebook-capture h3,
.books-section .offer-copy h3,
.books-section .product-section-title h3,
.books-section .book-video-copy h3,
.books-section .next-project h3,
.books-section .book-card h3,
.books-section .physical-card h3,
.books-section .offer-card h4,
.books-section .quick-order strong,
.books-section .sales-faq-heading h3,
.books-section .sales-faq-list summary {
  color: var(--plum-ink);
}

.books-section .book-feature-copy blockquote {
  border-color: rgba(131, 85, 139, 0.24);
  background: rgba(131, 85, 139, 0.08);
}

.books-section .book-feature-copy blockquote p {
  color: var(--plum-ink);
}

.books-section .book-feature-copy blockquote cite,
.books-section .book-feature-copy dd,
.books-section .book-product-visual > div > span {
  color: var(--plum);
}

.books-section .book-feature-copy dl,
.books-section .book-feature-promises p,
.books-section .book-feature-promises li,
.books-section .book-conversion-notes p {
  color: rgba(43, 32, 40, 0.74);
}

.books-section .book-feature-copy dl div {
  border-bottom-color: rgba(74, 42, 78, 0.18);
}

.books-section .book-conversion-notes {
  border-color: rgba(74, 42, 78, 0.14);
  background: rgba(255, 250, 242, 0.72);
}

.books-section .book-conversion-notes strong,
.books-section .ebook-benefits strong,
.books-section .authority-grid strong,
.books-section .inside-preview-grid strong,
.books-section .book-feature-promises span,
.books-section .sample-excerpt span,
.books-section .selected-offer-label,
.books-section .offer-card span {
  color: var(--gold);
}

.books-section .book-feature-promises article {
  border-color: rgba(74, 42, 78, 0.14);
  background: rgba(255, 255, 255, 0.52);
}

.books-section .sample-excerpt p {
  color: var(--plum-ink);
}

.books-section .reader-signup-form label,
.books-section .quick-order-form label {
  color: var(--plum);
}

.books-section .reader-signup-form input,
.books-section .reader-signup-form select,
.books-section .quick-order-form input,
.books-section .quick-order-form select {
  border-color: rgba(74, 42, 78, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

.books-section .reader-signup-form input::placeholder,
.books-section .quick-order-form input::placeholder {
  color: rgba(43, 32, 40, 0.42);
}

.books-section .btn.outline,
.books-section .btn.outline-light,
.books-section .offer-select {
  border-color: var(--plum);
  color: var(--plum);
}

.books-section .offer-card.active .offer-select {
  border-color: var(--gold);
  color: var(--cream);
}

.book-feature-copy h3 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 4.8vw, 4.4rem);
  line-height: 0.94;
}

.book-feature-copy p,
.book-card p,
.next-project p {
  color: rgba(255, 250, 242, 0.74);
}

.book-card-copy {
  display: grid;
  gap: 10px;
}

.book-card-copy small {
  color: rgba(255, 250, 242, 0.66);
  font-size: 0.8rem;
}

.book-feature-copy blockquote {
  border-color: var(--rose);
  background: rgba(255, 250, 242, 0.08);
}

.book-feature-copy blockquote p {
  color: var(--cream);
}

.book-feature-copy blockquote cite {
  color: var(--lavender);
}

.book-feature-promises {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 14px;
  max-width: 760px;
  margin-top: 24px;
}

.book-feature-promises article {
  padding: 18px 20px;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.06);
}

.book-feature-promises span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.book-feature-promises p {
  margin: 0;
  color: rgba(255, 250, 242, 0.74);
  font-size: 0.98rem;
}

.book-feature-promises ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.book-feature-promises li {
  color: rgba(255, 250, 242, 0.74);
  font-size: 0.96rem;
}

.book-conversion-notes {
  display: grid;
  gap: 7px;
  max-width: 560px;
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.06);
}

.book-conversion-notes span {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.book-conversion-notes strong {
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
}

.book-conversion-notes p {
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.96rem;
}

.ebook-value-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(26px, 5vw, 54px);
  align-items: start;
  margin: 0 0 58px;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.095), rgba(255, 255, 255, 0.04)),
    rgba(255, 250, 242, 0.05);
}

.ebook-value-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.ebook-value-copy h3 {
  max-width: 520px;
  color: var(--cream);
  font-size: clamp(2.05rem, 3.4vw, 3.35rem);
  line-height: 0.97;
}

.ebook-value-copy p {
  max-width: 500px;
  margin-top: 0;
  color: rgba(255, 250, 242, 0.74);
}

.ebook-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ebook-benefits article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 204px;
  padding: 22px;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.075), rgba(255, 250, 242, 0.035));
}

.ebook-benefits strong {
  display: block;
  margin-bottom: 0;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.02;
}

.ebook-benefits p {
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.94rem;
}

.authority-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
  margin: 0 0 58px;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.1), rgba(255, 250, 242, 0.045)),
    rgba(255, 250, 242, 0.04);
}

.authority-copy h3 {
  color: var(--cream);
  font-size: clamp(2.05rem, 3.2vw, 3.25rem);
  line-height: 0.97;
}

.authority-copy p {
  max-width: 600px;
  margin-top: 12px;
  color: rgba(255, 250, 242, 0.76);
}

.authority-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.authority-grid article {
  min-height: 166px;
  padding: 20px;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.07);
}

.authority-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #f3c98a;
  font-family: var(--font-serif);
  font-size: 1.58rem;
  font-weight: 600;
  line-height: 1.02;
}

.authority-grid p {
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.95rem;
}

.inside-preview {
  display: grid;
  gap: 22px;
  margin: 0 0 58px;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.06);
}

.inside-preview-heading {
  max-width: 860px;
}

.inside-preview-heading h3 {
  color: var(--cream);
  font-size: clamp(2.05rem, 3.2vw, 3.25rem);
  line-height: 0.97;
}

.inside-preview-heading p {
  max-width: 660px;
  margin-top: 12px;
  color: rgba(255, 250, 242, 0.74);
}

.inside-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.inside-preview-grid article {
  min-height: 172px;
  padding: 20px;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.07);
}

.inside-preview-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.62rem;
  font-weight: 600;
  line-height: 1.02;
}

.inside-preview-grid p {
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.95rem;
}

.inside-preview-action {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sample-chapter {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
  margin: 0 0 58px;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.06);
}

.sample-copy h3 {
  color: var(--cream);
  font-size: clamp(2.05rem, 3.2vw, 3.25rem);
  line-height: 0.97;
}

.sample-copy p {
  max-width: 620px;
  margin-top: 12px;
  color: rgba(255, 250, 242, 0.74);
}

.sample-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.sample-excerpt {
  padding: 24px;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.08);
}

.sample-excerpt span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sample-excerpt p {
  color: rgba(255, 250, 242, 0.86);
  font-family: var(--font-serif);
  font-size: 1.62rem;
  line-height: 1.14;
}

.sample-excerpt small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 250, 242, 0.68);
  font-size: 0.84rem;
}

.reader-confidence,
.testimonial-templates {
  display: grid;
  gap: 22px;
  margin: 0 0 58px;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.06);
}

.reader-confidence-heading,
.testimonial-templates-heading {
  max-width: 900px;
}

.reader-confidence-heading h3,
.testimonial-templates-heading h3 {
  color: var(--cream);
  font-size: clamp(2.02rem, 3.15vw, 3.15rem);
  line-height: 0.97;
}

.reader-confidence-heading p,
.testimonial-templates-heading p {
  max-width: 700px;
  margin-top: 12px;
  color: rgba(255, 250, 242, 0.74);
}

.reader-confidence-grid,
.testimonial-template-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.reader-confidence-grid article,
.testimonial-template-grid article {
  min-height: 212px;
  padding: 22px;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.08);
}

.reader-confidence-grid strong,
.testimonial-template-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--plum-ink);
  font-family: var(--font-serif);
  font-size: 1.52rem;
  font-weight: 600;
  line-height: 1.02;
}

.reader-confidence-grid p,
.testimonial-template-grid small {
  color: rgba(43, 32, 40, 0.72);
  font-size: 0.94rem;
}

.testimonial-template-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
}

.testimonial-template-grid span {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.testimonial-template-grid blockquote {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.testimonial-template-grid blockquote p {
  color: var(--plum-ink);
  font-family: var(--font-serif);
  font-size: 1.48rem;
  line-height: 1.12;
}

.sales-faq {
  display: grid;
  gap: 22px;
  margin: 0 0 58px;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.06);
}

.sales-faq-heading {
  max-width: 860px;
}

.sales-faq-heading h3 {
  color: var(--cream);
  font-size: clamp(2rem, 3.15vw, 3.15rem);
  line-height: 0.97;
}

.sales-faq-heading p {
  max-width: 650px;
  margin-top: 12px;
  color: rgba(255, 250, 242, 0.74);
}

.sales-faq-list {
  display: grid;
  gap: 12px;
}

.sales-faq-list details {
  padding: 18px 20px;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.08);
}

.sales-faq-list summary {
  cursor: pointer;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.1;
}

.sales-faq-list p {
  margin-top: 14px;
  color: rgba(255, 250, 242, 0.72);
}

.ebook-capture {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  margin: 44px 0 64px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(255, 250, 242, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214, 168, 182, 0.14), transparent 48%),
    rgba(255, 250, 242, 0.055);
}

.ebook-capture-copy {
  display: grid;
  gap: 12px;
}

.ebook-capture h3 {
  max-width: 620px;
  color: var(--cream);
  font-size: clamp(2rem, 3.15vw, 3.15rem);
  line-height: 0.97;
}

.ebook-capture p {
  max-width: 560px;
  color: rgba(255, 250, 242, 0.74);
}

.reader-signup-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.reader-signup-form label,
.quick-order-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 250, 242, 0.74);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reader-signup-form input,
.reader-signup-form select,
.quick-order-form input,
.quick-order-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 250, 242, 0.24);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.1);
  color: var(--cream);
  outline: 0;
  padding: 0 16px;
}

.reader-signup-form .full-field,
.quick-order-form .full-field {
  grid-column: 1 / -1;
}

.reader-signup-form select option,
.quick-order-form select option {
  color: var(--text);
}

.reader-signup-form input::placeholder,
.quick-order-form input::placeholder {
  color: rgba(255, 250, 242, 0.66);
}

.reader-signup-form button {
  grid-column: 1 / -1;
  width: fit-content;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: var(--cream);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signup-status {
  grid-column: 1 / -1;
  color: rgba(255, 250, 242, 0.76);
  font-size: 0.9rem;
}

.book-feature-copy dl {
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 250, 242, 0.84);
}

.book-feature-copy dl div {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(74, 42, 78, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.44);
}

.book-feature-copy dt {
  color: #f4c56c;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.book-feature-copy dd {
  margin: 0;
}

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

.book-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  align-content: start;
  padding: 20px;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.book-card h3 {
  margin: 8px 0 6px;
  font-size: 2.05rem;
  line-height: 0.98;
}

.book-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(47, 27, 48, 0.08);
}

.book-offers {
  display: grid;
  gap: 24px;
  margin: 10px 0 60px;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(255, 250, 242, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(183, 126, 47, 0.13), transparent 42%),
    rgba(255, 250, 242, 0.055);
}

.offer-copy {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.offer-copy h3 {
  color: var(--cream);
  font-size: clamp(2.1rem, 3.35vw, 3.35rem);
  line-height: 0.97;
}

.offer-copy p {
  max-width: 680px;
  color: rgba(255, 250, 242, 0.74);
}

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

.offer-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 14px;
  align-content: start;
  min-height: 272px;
  padding: 22px;
  border: 1px solid rgba(255, 250, 242, 0.17);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.06);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 180ms ease;
}

.offer-card.active {
  border-color: rgba(183, 126, 47, 0.72);
  background: rgba(255, 250, 242, 0.1);
  transform: translateY(-4px);
}

.offer-card:hover {
  box-shadow: 0 18px 42px rgba(47, 27, 48, 0.08);
}

.offer-card span {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-card h4 {
  margin: 0;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 2.05rem;
  font-weight: 600;
  line-height: 0.98;
}

.offer-card p {
  color: rgba(255, 250, 242, 0.74);
}

.offer-includes {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
}

.offer-includes li {
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.92rem;
}

.offer-select {
  align-self: end;
  width: fit-content;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 250, 242, 0.72);
  border-radius: 999px;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-card.active .offer-select {
  border-color: var(--gold);
  background: var(--gold);
}

.quick-order {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 8px;
  background: rgba(20, 10, 22, 0.22);
}

.quick-order strong {
  display: block;
  margin-bottom: 10px;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
}

.selected-offer-label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quick-order p {
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.96rem;
}

.quick-order-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quick-order-form button {
  width: fit-content;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: var(--cream);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.order-status {
  align-self: center;
  color: rgba(255, 250, 242, 0.76);
  font-size: 0.9rem;
}

.book-cover.drop-image {
  width: 100%;
  border: 1px solid rgba(255, 250, 242, 0.22);
  background: var(--linen);
  box-shadow: 15px 17px 0 rgba(0, 0, 0, 0.16);
}

.book-cover.large.drop-image {
  max-width: 420px;
  margin: 0 auto;
}

.book-product-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 0.78fr) minmax(150px, 0.42fr);
  gap: 18px;
  align-items: end;
}

.book-product-visual > div {
  position: relative;
}

.book-product-visual span,
.product-section-title .section-label {
  color: var(--lavender);
}

.book-product-visual > div > span {
  display: inline-flex;
  margin-top: 18px;
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-physical {
  margin-bottom: 22px;
}

.physical-cover.drop-image {
  border-style: dashed;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.18), transparent 40%),
    rgba(255, 250, 242, 0.06);
  box-shadow: 10px 12px 0 rgba(0, 0, 0, 0.12);
}

.physical-cover.has-image {
  border-style: solid;
}

.product-section-title {
  display: grid;
  gap: 10px;
  margin: 56px 0 20px;
}

.product-section-title h3 {
  max-width: 760px;
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  line-height: 0.98;
}

.physical-books {
  margin-top: 18px;
}

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

.physical-card {
  display: grid;
  grid-template-columns: minmax(118px, 0.72fr) 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.physical-card h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
  line-height: 1.02;
}

.physical-card p {
  margin-bottom: 18px;
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.95rem;
}

.physical-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(47, 27, 48, 0.08);
}

.book-video-feature {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 460px);
  gap: clamp(26px, 4vw, 58px);
  align-items: center;
  margin-top: 36px;
  padding: clamp(22px, 4vw, 46px);
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.07);
}

.book-video-copy h3 {
  max-width: 620px;
  margin: 12px 0 16px;
  font-size: clamp(2.05rem, 3.2vw, 3.15rem);
  line-height: 0.97;
}

.book-video-copy p {
  max-width: 600px;
  color: rgba(255, 250, 242, 0.74);
}

.book-video-frame {
  width: min(100%, 430px);
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 8px;
  background: #160e18;
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.22);
}

.book-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: min(76vh, 720px);
  object-fit: contain;
  background: #160e18;
}

.next-project {
  display: grid;
  gap: 12px;
  margin-top: 40px;
  padding: 30px;
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.08);
}

.next-project h3 {
  max-width: 860px;
  font-size: clamp(2.1rem, 3.2vw, 3.1rem);
  line-height: 0.97;
}

.next-project p {
  max-width: 680px;
}

.books-section .book-feature-copy h3,
.books-section .ebook-value-copy h3,
.books-section .authority-copy h3,
.books-section .inside-preview-heading h3,
.books-section .reader-confidence-heading h3,
.books-section .testimonial-templates-heading h3,
.books-section .ebook-capture h3,
.books-section .offer-copy h3,
.books-section .product-section-title h3,
.books-section .book-video-copy h3,
.books-section .next-project h3,
.books-section .book-card h3,
.books-section .physical-card h3,
.books-section .offer-card h4,
.books-section .quick-order strong {
  color: var(--plum-ink);
}

.books-section .book-feature-copy p,
.books-section .book-card p,
.books-section .book-card small,
.books-section .next-project p,
.books-section .ebook-value-copy p,
.books-section .ebook-benefits p,
.books-section .authority-copy p,
.books-section .authority-grid p,
.books-section .inside-preview-heading p,
.books-section .inside-preview-grid p,
.books-section .reader-confidence-heading p,
.books-section .reader-confidence-grid p,
.books-section .testimonial-templates-heading p,
.books-section .offer-includes li,
.books-section .offer-copy p,
.books-section .offer-card p,
.books-section .quick-order p,
.books-section .ebook-capture p,
.books-section .physical-card p,
.books-section .book-video-copy p,
.books-section .book-conversion-notes p,
.books-section .book-feature-copy dl,
.books-section .book-feature-promises p,
.books-section .book-feature-promises li {
  color: rgba(43, 32, 40, 0.72);
}

.books-section .book-feature,
.books-section .ebook-value-panel,
.books-section .ebook-benefits article,
.books-section .authority-panel,
.books-section .authority-grid article,
.books-section .inside-preview,
.books-section .inside-preview-grid article,
.books-section .reader-confidence,
.books-section .reader-confidence-grid article,
.books-section .book-card,
.books-section .book-offers,
.books-section .offer-card,
.books-section .testimonial-templates,
.books-section .testimonial-template-grid article,
.books-section .quick-order,
.books-section .ebook-capture,
.books-section .physical-card,
.books-section .book-video-feature,
.books-section .book-conversion-notes,
.books-section .next-project {
  border-color: rgba(74, 42, 78, 0.14);
  background: rgba(255, 250, 242, 0.76);
}

.books-section .book-feature-promises article {
  border-color: rgba(74, 42, 78, 0.14);
  background: rgba(255, 255, 255, 0.52);
}

.books-section .book-feature-copy blockquote {
  border-color: rgba(131, 85, 139, 0.22);
  background: rgba(131, 85, 139, 0.08);
}

.books-section .book-feature-copy blockquote p {
  color: var(--plum-ink);
}

.books-section .book-feature-copy blockquote cite,
.books-section .book-feature-copy dd,
.books-section .book-product-visual > div > span,
.books-section .product-section-title .section-label {
  color: var(--plum);
}

.books-section .testimonial-template-grid blockquote p,
.books-section .testimonial-template-grid strong {
  color: var(--plum-ink);
}

.books-section .book-feature-promises span {
  color: var(--gold);
}

.books-section .reader-confidence-grid strong,
.books-section .testimonial-template-grid span {
  color: var(--gold);
}

.books-section .finder-result-list li {
  color: rgba(255, 250, 242, 0.84);
}

.books-section .book-feature-copy dl div {
  border-bottom-color: rgba(74, 42, 78, 0.18);
}

.books-section .book-tabs button {
  border-color: rgba(74, 42, 78, 0.24);
  color: var(--plum);
}

.books-section .book-tabs button.active,
.books-section .book-tabs button:hover {
  background: var(--plum);
  color: var(--cream);
}

.books-section .reader-signup-form label,
.books-section .quick-order-form label {
  color: var(--plum);
}

.books-section .reader-signup-form input,
.books-section .reader-signup-form select,
.books-section .quick-order-form input,
.books-section .quick-order-form select {
  border-color: rgba(74, 42, 78, 0.16);
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
}

.books-section .reader-signup-form input::placeholder,
.books-section .quick-order-form input::placeholder {
  color: rgba(43, 32, 40, 0.42);
}

.books-section .btn.outline,
.books-section .btn.outline-light,
.books-section .offer-select {
  border-color: var(--plum);
  color: var(--plum);
}

.books-section .offer-card.active .offer-select {
  border-color: var(--gold);
  color: var(--cream);
}

.wisdom-section {
  background: var(--paper);
}

.wisdom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 3.5vw, 46px);
}

.wisdom-column {
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.wisdom-column > span {
  color: var(--sage);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wisdom-column h3 {
  margin: 12px 0 26px;
  color: var(--plum);
  font-size: 2.55rem;
}

.wisdom-column ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wisdom-column li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
}

.wisdom-column li strong {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.32rem;
  font-weight: 600;
}

.wisdom-column li span {
  color: var(--text);
  font-weight: 700;
}

.quote-band {
  display: grid;
  justify-items: center;
  margin-top: clamp(44px, 7vw, 84px);
  padding: clamp(28px, 5vw, 60px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.quote-band p {
  max-width: 930px;
  color: var(--plum-ink);
  font-family: var(--font-serif);
  font-size: 3.6rem;
  line-height: 1.05;
}

.media-section {
  position: relative;
  overflow: hidden;
  background: var(--linen);
}

.media-section::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -12%;
  width: 52%;
  height: 120%;
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.56);
}

.media-grid {
  position: relative;
  z-index: 1;
}

.media-drop.drop-image {
  width: 100%;
  min-height: 540px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214, 168, 182, 0.22), transparent 36%),
    var(--plum-ink);
  box-shadow: 0 24px 60px rgba(47, 27, 48, 0.18);
}

.media-drop .drop-placeholder {
  color: var(--cream);
}

.media-drop .drop-placeholder span {
  color: var(--lavender);
}

.media-drop .drop-placeholder strong {
  color: var(--cream);
}

.audio-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.audio-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 14px 34px rgba(47, 27, 48, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.audio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(47, 27, 48, 0.14);
}

.audio-card button {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 50%;
  background: var(--plum-ink);
  color: var(--light-text);
  cursor: pointer;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audio-card span {
  color: var(--plum);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audio-card h3 {
  margin: 3px 0 4px;
  color: var(--plum-ink);
  font-size: 1.55rem;
}

.audio-card p {
  font-size: 0.92rem;
}

.sonolusso-bridge {
  background: var(--paper);
}

.bridge-grid .drop-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(47, 27, 48, 0.16);
}

.contact-section {
  padding: var(--space-xl) 0;
  background:
    linear-gradient(135deg, rgba(127, 141, 115, 0.16), transparent 30%),
    var(--plum-ink);
  color: var(--light-text);
}

.contact-section h2 {
  color: var(--light-text);
}

.contact-section p {
  color: rgba(255, 250, 242, 0.74);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(255, 250, 242, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.05);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-bottom: 1px solid rgba(255, 250, 242, 0.32);
  outline: 0;
  background: transparent;
  color: var(--light-text);
}

.contact-form textarea {
  min-height: 108px;
  resize: vertical;
}

.contact-form select option {
  color: var(--text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 250, 242, 0.66);
}

.contact-form button {
  width: fit-content;
  min-height: 46px;
  margin-top: 14px;
  padding: 12px 28px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: var(--light-text);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form button:disabled,
.quick-order-form button:disabled,
.reader-signup-form button:disabled,
.admin-login-form button:disabled,
.admin-actions button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.form-status {
  color: rgba(255, 250, 242, 0.78);
  font-size: 0.9rem;
}

.bot-field-wrap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.signup-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}

.signup-scrim {
  position: absolute;
  inset: 0;
  background: rgba(22, 11, 24, 0.52);
  backdrop-filter: blur(5px);
}

.signup-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  width: min(560px, 100%);
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(255, 250, 242, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(246, 238, 228, 0.96), rgba(255, 250, 242, 0.94)),
    var(--cream);
  color: var(--plum-ink);
  box-shadow: 0 30px 90px rgba(18, 8, 20, 0.34);
}

.signup-dialog h2 {
  max-width: 440px;
  font-size: clamp(2.7rem, 8vw, 5rem);
}

.signup-dialog p {
  max-width: 470px;
  color: rgba(43, 32, 40, 0.74);
}

.signup-dialog small {
  color: var(--muted);
  font-size: 0.78rem;
}

.signup-dialog .reader-signup-form input,
.signup-dialog .reader-signup-form select {
  border-color: rgba(47, 27, 48, 0.18);
  background: rgba(255, 255, 255, 0.6);
  color: var(--plum-ink);
}

.signup-dialog .reader-signup-form label {
  color: rgba(47, 27, 48, 0.64);
}

.signup-dialog .reader-signup-form input::placeholder {
  color: rgba(47, 27, 48, 0.48);
}

.signup-dialog .signup-status {
  color: var(--plum);
}

.signup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(47, 27, 48, 0.16);
  border-radius: 50%;
  background: transparent;
  color: var(--plum-ink);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.sticky-shop {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 55;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100vw - 132px);
  padding: 8px 10px;
  border: 1px solid rgba(74, 42, 78, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.94);
  color: var(--plum-ink);
  box-shadow: 0 20px 60px rgba(47, 27, 48, 0.16);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.sticky-shop.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.sticky-shop span {
  padding: 0 12px;
  color: var(--plum);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sticky-shop .btn {
  min-height: 38px;
  padding: 8px 16px;
  font-size: 0.6rem;
}

.floating-book {
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  justify-items: end;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-book.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-book-trigger {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1px;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(255, 250, 242, 0.82);
  border-radius: 50%;
  background: var(--plum);
  color: var(--cream);
  box-shadow: 0 18px 44px rgba(47, 27, 48, 0.28);
  cursor: pointer;
}

.floating-book-trigger span {
  max-width: 54px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.floating-book-trigger strong {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1;
}

.floating-book-panel {
  width: min(360px, calc(100vw - 34px));
  padding: 20px;
  border: 1px solid rgba(74, 42, 78, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(232, 184, 202, 0.24), transparent 44%),
    rgba(255, 250, 242, 0.96);
  color: var(--plum-ink);
  box-shadow: 0 24px 60px rgba(47, 27, 48, 0.16);
}

.floating-book-panel h2 {
  color: var(--plum-ink);
  font-size: 2rem;
}

.floating-book-panel p {
  margin: 10px 0 16px;
  color: rgba(43, 32, 40, 0.74);
  font-size: 0.95rem;
}

.bubble-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.floating-book-panel .btn,
.bubble-action,
.bubble-back,
.quiz-options button {
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bubble-action,
.bubble-back,
.quiz-options button {
  border: 1px solid var(--cream);
  background: var(--cream);
  color: var(--plum-ink);
  cursor: pointer;
}

.quiz-options {
  display: grid;
  gap: 10px;
  margin: 12px 0;
}

.quiz-options button {
  width: 100%;
  justify-content: flex-start;
  border-radius: 8px;
  padding: 13px 14px;
  text-align: left;
}

.bubble-back {
  background: transparent;
  color: var(--plum);
}

footer {
  padding: 72px 4vw 34px;
  background: var(--linen);
}

.footer-name {
  color: var(--plum-ink);
  font-family: var(--font-serif);
  font-size: 6.5rem;
  line-height: 0.95;
  text-align: center;
}

.footer-admin-link {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.footer-admin-link a {
  text-decoration: none;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(110, 63, 117, 0.18);
  background: rgba(255, 255, 255, 0.45);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.footer-admin-link a:hover,
.footer-admin-link a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(110, 63, 117, 0.34);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(76, 41, 82, 0.12);
}

.operator-mark {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1.5px solid rgba(110, 63, 117, 0.72);
}

.operator-mark::after {
  content: "";
  position: absolute;
  inset: 2.5px;
  border-radius: 999px;
  background: rgba(110, 63, 117, 0.72);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--plum);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-shell {
  min-height: 100vh;
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(232, 184, 202, 0.26), transparent 36%),
    linear-gradient(180deg, #f8eff7, #f1e5f3 55%, #f7efe5);
  color: var(--text);
}

.admin-login-card,
.admin-dashboard {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.admin-login-card {
  display: grid;
  gap: 18px;
  max-width: 560px;
  padding: clamp(24px, 5vw, 40px);
  border: 1px solid rgba(74, 42, 78, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.88);
  box-shadow: 0 24px 70px rgba(47, 27, 48, 0.14);
}

.admin-login-card h1,
.admin-dashboard h1 {
  color: var(--plum-ink);
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.admin-login-card p,
.admin-panel p,
.admin-metric p,
.admin-topbar p {
  color: rgba(43, 32, 40, 0.74);
}

.admin-login-form {
  display: grid;
  gap: 14px;
}

.admin-login-form label {
  display: grid;
  gap: 7px;
}

.admin-login-form label span {
  color: var(--plum);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-login-form input,
.admin-login-form button,
.admin-actions button,
.admin-actions a {
  min-height: 48px;
  border-radius: 999px;
}

.admin-login-form input {
  padding: 0 18px;
  border: 1px solid rgba(74, 42, 78, 0.18);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
}

.admin-login-form button,
.admin-actions button {
  padding: 0 22px;
  border: 1px solid var(--plum);
  background: var(--plum);
  color: var(--cream);
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-return-link,
.admin-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(74, 42, 78, 0.18);
  background: rgba(255, 255, 255, 0.78);
  color: var(--plum-ink);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.admin-status,
.admin-error,
.admin-warning {
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.admin-status {
  background: rgba(131, 85, 139, 0.08);
  color: var(--plum-ink);
}

.admin-error {
  background: rgba(186, 70, 70, 0.1);
  color: #8b1f1f;
}

.admin-warning {
  margin: 18px 0 0;
  border: 1px solid rgba(183, 126, 47, 0.26);
  background: rgba(243, 201, 138, 0.2);
  color: #6d4820;
}

.admin-dashboard {
  display: grid;
  gap: 22px;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.admin-metric-grid,
.admin-overview-grid,
.admin-feed-grid {
  display: grid;
  gap: 16px;
}

.admin-metric-grid {
  grid-template-columns: repeat(4, 1fr);
}

.admin-overview-grid {
  grid-template-columns: repeat(3, 1fr);
}

.admin-feed-grid {
  grid-template-columns: 1fr 1fr;
}

.admin-metric,
.admin-panel {
  padding: 22px;
  border: 1px solid rgba(74, 42, 78, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.82);
}

.admin-metric span,
.admin-panel h2 {
  color: var(--plum);
}

.admin-metric span {
  display: block;
  margin-bottom: 12px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-metric strong {
  display: block;
  color: var(--plum-ink);
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.95;
}

.admin-panel h2 {
  margin-bottom: 16px;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.admin-rank-list,
.admin-feed-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.admin-rank-list li,
.admin-feed-list li {
  display: grid;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(74, 42, 78, 0.1);
}

.admin-rank-list li:last-child,
.admin-feed-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.admin-rank-list strong,
.admin-feed-list strong,
.admin-table td strong {
  color: var(--plum-ink);
}

.admin-rank-list span,
.admin-feed-list span,
.admin-table td span {
  color: rgba(43, 32, 40, 0.62);
  font-size: 0.84rem;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(74, 42, 78, 0.1);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--plum);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-table td {
  color: var(--text);
  font-size: 0.94rem;
}

@media (max-width: 980px) {
  .hero-bg {
    width: 58%;
  }

  .hero h1 {
    font-size: 7rem;
  }

  .hero-content,
  .hero-stage {
    grid-template-columns: 1fr;
  }

  .hero-portrait-panel {
    max-width: 340px;
  }

  .hero-shelf-card {
    grid-column: auto;
    grid-row: auto;
  }

  .books-curation-rail {
    grid-template-columns: 1fr;
  }

  .books-curation-actions {
    justify-items: start;
  }

  .admin-metric-grid {
    grid-template-columns: 1fr 1fr;
  }

  .admin-overview-grid,
  .admin-feed-grid {
    grid-template-columns: 1fr;
  }

  .admin-topbar {
    display: grid;
    align-items: start;
  }

  .journal-copy h2,
  .media-copy h2,
  .bridge-grid h2,
  .contact-section h2 {
    font-size: 4.6rem;
  }

  .section-header h2 {
    font-size: 5rem;
  }

  .book-feature-copy h3 {
    font-size: 4.25rem;
  }

  .footer-name {
    font-size: 5.3rem;
  }

  .book-feature,
  .book-video-feature,
  .journal-grid,
  .media-grid,
  .bridge-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .book-grid,
  .physical-grid,
  .wisdom-grid,
  .finder-grid,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .books-section .section-header h2 {
    font-size: 4.15rem;
  }

  .book-feature-copy h3 {
    font-size: 3.65rem;
  }

  .ebook-value-panel,
  .authority-panel,
  .sample-chapter,
  .ebook-capture,
  .quick-order,
  .finder-result {
    grid-template-columns: 1fr;
  }

  .ebook-benefits,
  .inside-preview-grid,
  .reader-confidence-grid,
  .testimonial-template-grid,
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .finder-result-actions {
    justify-content: flex-start;
  }

  .journal-stack {
    min-height: 440px;
  }
}

@media (max-width: 760px) {
  :root {
    --space-xl: 5.4rem;
  }

  .container {
    width: min(100% - 34px, 1420px);
  }

  .site-header {
    padding: 22px 18px;
  }

  .logo {
    color: var(--cream);
  }

  .logo span {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    background: var(--plum-ink);
  }

  .hero-bg {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 76px 0 24px;
    text-align: center;
  }

  .portrait-wrap {
    width: min(220px, 72%);
    margin: 0 auto;
  }

  .hero-stage {
    gap: 16px;
  }

  .portrait-slot {
    border-width: 6px;
    box-shadow: 12px 14px 0 rgba(47, 27, 48, 0.16);
  }

  .portrait-note {
    left: 50%;
    bottom: -18px;
    width: 190px;
    padding: 11px 14px;
    font-size: 1rem;
    transform: translateX(-50%);
  }

  .hero-copy {
    padding: 34px 0 0;
  }

  .script-text {
    font-size: 2.5rem;
  }

  .hero h1 {
    font-size: 4.25rem;
  }

  .hero p {
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero-editorial-note {
    font-size: 0.94rem;
  }

  .hero-proof {
    justify-content: center;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-shelf-card,
  .hero-signal-card {
    padding: 18px;
  }

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

  .conversion-grid,
  .conversion-actions {
    display: grid;
    justify-items: stretch;
    text-align: center;
  }

  .conversion-actions .btn {
    width: 100%;
  }

  .journal-copy h2,
  .media-copy h2,
  .bridge-grid h2,
  .contact-section h2 {
    font-size: 2.8rem;
  }

  .section-header h2 {
    font-size: 3rem;
  }

  blockquote p {
    font-size: 1.65rem;
  }

  .proof-item strong {
    font-size: 2.7rem;
  }

  .book-feature-copy h3 {
    font-size: 3rem;
  }

  .books-section .section-header h2,
  .book-finder-section .section-header h2 {
    font-size: 3rem;
  }

  .books-curation-copy h3 {
    font-size: 2.2rem;
  }

  .book-video-copy h3 {
    font-size: 2.35rem;
  }

  .book-card h3 {
    font-size: 2rem;
  }

  .product-section-title h3 {
    font-size: 2.15rem;
  }

  .book-product-visual {
    grid-template-columns: 1fr;
  }

  .product-physical {
    width: min(100%, 260px);
    margin: 0 auto;
  }

  .physical-card {
    grid-template-columns: 1fr;
  }

  .physical-card .book-cover {
    max-width: 240px;
    margin: 0 auto;
  }

  .next-project h3 {
    font-size: 2.25rem;
  }

  .wisdom-column h3 {
    font-size: 2rem;
  }

  .quote-band p {
    font-size: 2.2rem;
  }

  .footer-name {
    font-size: 3rem;
  }

  .hero-actions,
  .book-actions {
    justify-content: center;
  }

  .proof-grid,
  .book-grid,
  .physical-grid,
  .wisdom-grid,
  .finder-grid {
    grid-template-columns: 1fr;
  }

  .finder-card {
    min-height: auto;
    padding: 22px;
  }

  .finder-card h3 {
    font-size: 2rem;
  }

  .finder-choice {
    width: 100%;
  }

  .finder-result {
    grid-template-columns: 1fr;
  }

  .book-feature-promises {
    grid-template-columns: 1fr;
  }

  .finder-result-actions {
    justify-content: stretch;
  }

  .finder-result-actions .btn {
    justify-content: center;
    width: 100%;
  }

  .journal-stack {
    min-height: auto;
  }

  .journal-stack .drop-image,
  .journal-stack .drop-image:first-child,
  .journal-stack .drop-image:last-child {
    position: static;
    width: 100%;
    margin-bottom: 18px;
    border-radius: 8px;
  }

  .book-feature {
    padding: 18px;
  }

  .book-conversion-notes {
    text-align: left;
  }

  .offer-grid,
  .quick-order,
  .quick-order-form {
    grid-template-columns: 1fr;
  }

  .books-curation-actions,
  .books-curation-actions .btn {
    width: 100%;
  }

  .offer-card {
    min-height: auto;
  }

  .offer-card .btn,
  .quick-order-form button {
    width: 100%;
  }

  .order-status {
    text-align: center;
  }

  .ebook-value-panel,
  .ebook-benefits,
  .authority-panel,
  .authority-grid,
  .inside-preview-grid,
  .reader-confidence-grid,
  .testimonial-template-grid,
  .sample-chapter {
    grid-template-columns: 1fr;
  }

  .ebook-benefits article,
  .authority-grid article,
  .inside-preview-grid article {
    min-height: auto;
  }

  .sample-actions,
  .inside-preview-action {
    justify-content: stretch;
  }

  .sample-actions .btn,
  .inside-preview-action .btn {
    width: 100%;
  }

  .ebook-capture,
  .reader-signup-form {
    grid-template-columns: 1fr;
  }

  .reader-signup-form select,
  .reader-signup-form button,
  .signup-status {
    grid-column: auto;
  }

  .reader-signup-form button {
    width: 100%;
  }

  .book-video-feature {
    padding: 18px;
  }

  .book-video-frame {
    width: min(100%, 340px);
  }

  .book-cover.large {
    max-width: 300px;
  }

  .book-feature-copy dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .next-project {
    padding: 28px 0;
  }

  .audio-card {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
    text-align: center;
  }

  .sticky-shop {
    left: 12px;
    right: 84px;
    bottom: 12px;
    display: grid;
    max-width: none;
    border-radius: 8px;
    transform: translateY(18px);
  }

  .sticky-shop.show {
    transform: translateY(0);
  }

  .sticky-shop span {
    padding: 0 4px;
    text-align: center;
    white-space: normal;
  }

  .sticky-shop .btn {
    width: 100%;
  }

  .floating-book {
    right: 14px;
    bottom: 14px;
  }

  .floating-book-trigger {
    width: 64px;
    height: 64px;
  }

  .floating-book-trigger strong {
    font-size: 1.02rem;
  }

  .floating-book-trigger span {
    max-width: 44px;
    font-size: 0.46rem;
  }
}

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

  .reveal-on-scroll,
  .portrait-wrap,
  .hero-copy,
  .hero-proof span,
  .hero-actions .btn {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
    transition: none;
  }
}
