:root {
  --cream: #f4f1ea;
  --ivory: #faf8f2;
  --ink: #2a2a3b;
  --muted-ink: #59576a;
  --purple: #6b5b86;
  --dark-purple: #58476f;
  --sage: #6f9278;
  --pale-sage: #dde7dc;
  --copper: #c8846d;
  --border: #ded8cb;
  --shadow: 0 24px 70px rgba(42, 42, 59, 0.14);
  --soft-shadow: 0 16px 42px rgba(42, 42, 59, 0.1);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Barlow", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(111, 146, 120, 0.05) 1px, transparent 1px) 0 0 / 72px 72px,
    radial-gradient(circle at 18% 12%, rgba(200, 132, 109, 0.11), transparent 28%),
    var(--cream);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(180deg, rgba(250, 248, 242, 0.7), rgba(244, 241, 234, 0.2)),
    repeating-linear-gradient(0deg, rgba(42, 42, 59, 0.018) 0 1px, transparent 1px 5px);
}

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

p {
  color: var(--muted-ink);
  font-size: 1.08rem;
  line-height: 1.75;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: 8.2rem;
  line-height: 0.88;
}

h2 {
  font-size: 5rem;
  line-height: 0.95;
}

h3 {
  font-size: 2.05rem;
  line-height: 1.02;
}

.paper-grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 10;
  opacity: 0.22;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(42, 42, 59, 0.07) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 10%, rgba(42, 42, 59, 0.05) 0 1px, transparent 1px);
  background-size: 16px 18px, 22px 20px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1160px, 100%);
  min-height: 66px;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(222, 216, 203, 0.88);
  border-radius: 999px;
  background: rgba(250, 248, 242, 0.82);
  box-shadow: 0 18px 50px rgba(42, 42, 59, 0.1);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  /* border: 1px solid rgba(107, 91, 134, 0.34); */
  /* border-radius: 50%; */
  background: var(--ivory);
  color: var(--dark-purple);
  font-family: var(--serif);
  font-size: 1rem;
}

.brand-mark img {
  display: block;
  width: 25px;
  height: 27px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 34px);
  color: var(--muted-ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  background: var(--copper);
  transition: transform 220ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 700;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.nav-cta,
.button.primary {
  background: var(--purple);
  color: #fffaf2;
  box-shadow: 0 12px 28px rgba(88, 71, 111, 0.2);
}

.button.secondary {
  border-color: rgba(42, 42, 59, 0.18);
  background: rgba(250, 248, 242, 0.72);
  color: var(--ink);
}

.button.ivory {
  background: var(--ivory);
  color: var(--dark-purple);
}

.button.ghost-light {
  border-color: rgba(250, 248, 242, 0.42);
  color: var(--ivory);
}

.button.small {
  min-height: 40px;
  padding-inline: 18px;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(88, 71, 111, 0.25);
}

.section-pad {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  padding: clamp(72px, 8vw, 128px) 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  min-height: calc(100vh - 90px);
  padding-top: clamp(76px, 9vw, 130px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
}

.eyebrow.light {
  color: #e4dacd;
}

.hero-subhead {
  max-width: 660px;
  margin: 30px 0 0;
  font-size: 1.28rem;
}

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

.cred-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  max-width: 760px;
  margin-top: 36px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
}

.cred-line span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cred-line span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  content: "";
}

.hero-visual,
.feature-visual,
.cta-art {
  position: relative;
  min-height: 620px;
}

.purple-plate {
  position: absolute;
  top: 58px;
  right: 28px;
  width: 290px;
  height: 420px;
  border-radius: 46% 54% 42% 58%;
  background: rgba(107, 91, 134, 0.16);
  transform: rotate(-8deg);
}

.botanical-spray {
  position: absolute;
  top: 10px;
  right: 8px;
  width: 190px;
  height: 220px;
  animation: botanicalDrift 9s ease-in-out infinite alternate;
}

.botanical-spray span,
.cta-leaves span {
  position: absolute;
  width: 74px;
  height: 24px;
  border-radius: 100% 0 100% 0;
  background: rgba(111, 146, 120, 0.32);
  transform-origin: left center;
}

.botanical-spray span:nth-child(1) {
  top: 36px;
  left: 42px;
  transform: rotate(-34deg);
}

.botanical-spray span:nth-child(2) {
  top: 78px;
  left: 72px;
  transform: rotate(20deg);
}

.botanical-spray span:nth-child(3) {
  top: 122px;
  left: 52px;
  transform: rotate(-16deg);
}

.botanical-spray span:nth-child(4) {
  top: 156px;
  left: 88px;
  transform: rotate(34deg);
}

.book-3d {
  position: relative;
  width: 310px;
  height: 430px;
  transform-style: preserve-3d;
}

.book-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 34px 28px 28px;
  border: 1px solid rgba(42, 42, 59, 0.18);
  border-radius: 8px 14px 14px 8px;
  background:
    linear-gradient(90deg, rgba(42, 42, 59, 0.08), transparent 12%),
    linear-gradient(180deg, #fbf6e8, #f2eadc);
  box-shadow: var(--shadow);
}

.book-cover::before {
  position: absolute;
  inset: 0 0 auto;
  height: 86px;
  background: var(--dark-purple);
  content: "";
}

.cover-ribbon {
  position: relative;
  align-self: flex-end;
  z-index: 1;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(250, 248, 242, 0.13);
  color: #f8efe2;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.cover-kicker {
  position: relative;
  z-index: 1;
  margin: 32px 0 18px;
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.book-cover h2 {
  max-width: 250px;
  color: var(--ink);
  font-size: 2.85rem;
  line-height: 0.88;
}

.cover-subtitle {
  margin: 18px 0 0;
  color: var(--muted-ink);
  font-size: 0.86rem;
  line-height: 1.45;
}

.cover-divider {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: auto 0 18px;
}

.cover-divider span {
  width: 44px;
  height: 12px;
  border-radius: 100% 0 100% 0;
  background: rgba(111, 146, 120, 0.44);
}

.cover-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  color: var(--dark-purple);
  font-size: 0.58rem;
  text-align: center;
  text-transform: uppercase;
}

.cover-steps b {
  padding-top: 8px;
  border-top: 1px solid rgba(107, 91, 134, 0.22);
}

.cover-author {
  margin: 18px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1;
}

.book-spine {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: -22px;
  width: 30px;
  border-radius: 7px 0 0 7px;
  background: linear-gradient(90deg, #423251, var(--dark-purple));
  transform: skewY(-18deg);
  box-shadow: -12px 18px 30px rgba(42, 42, 59, 0.13);
}

.hero-book {
  position: absolute;
  top: 58px;
  right: 56px;
  transform: perspective(1100px) rotateY(-18deg) rotateZ(2deg);
  animation: bookEntrance 900ms 120ms both ease-out;
}

.hero-book-image {
  position: absolute;
  top: 32px;
  right: 0;
  z-index: 2;
  display: block;
  width: min(520px, 100%);
  aspect-ratio: 1122 / 1402;
  border: 1px solid rgba(222, 216, 203, 0.84);
  border-radius: 8px;
  object-fit: cover;
  object-position: 50% 50%;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  animation: bookEntranceImage 900ms 120ms both ease-out;
}

.open-book {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 440px;
  min-height: 270px;
  padding: 18px;
  border: 1px solid rgba(222, 216, 203, 0.88);
  border-radius: 10px;
  background: #eee6d7;
  box-shadow: var(--soft-shadow);
}

.hero-open {
  position: absolute;
  right: 0;
  bottom: 22px;
  transform: rotate(-5deg);
}

.page {
  position: relative;
  min-height: 232px;
  padding: 26px 22px;
  background:
    linear-gradient(90deg, rgba(42, 42, 59, 0.05), transparent 14%),
    #fffaf0;
}

.right-page {
  box-shadow: inset 12px 0 20px rgba(42, 42, 59, 0.06);
}

.page-label {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.page h3 {
  color: var(--ink);
  font-size: 1.6rem;
}

.rule,
.note-line,
.check-row,
.page p:not(.page-label) {
  display: block;
  height: 8px;
  margin: 16px 0;
  border-radius: 99px;
  background: rgba(42, 42, 59, 0.13);
}

.rule {
  width: 64%;
  height: 2px;
  background: var(--sage);
}

.page p:not(.page-label):nth-of-type(3) {
  width: 84%;
}

.page p:not(.page-label):nth-of-type(4) {
  width: 72%;
}

.note-line {
  width: 92%;
}

.note-line.short {
  width: 58%;
}

.check-row {
  position: relative;
  width: 82%;
  height: 18px;
  padding-left: 28px;
  background: transparent;
}

.check-row::before {
  position: absolute;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid var(--sage);
  border-radius: 3px;
  content: "";
}

.check-row::after {
  position: absolute;
  top: 5px;
  left: 28px;
  width: 75%;
  height: 6px;
  border-radius: 99px;
  background: rgba(42, 42, 59, 0.13);
  content: "";
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.section-copy p {
  max-width: 720px;
}

.author-card,
.philosophy-card,
.product-card,
.stat-block,
.benefit,
.quote-card {
  border: 1px solid var(--border);
  background: rgba(250, 248, 242, 0.78);
  box-shadow: var(--soft-shadow);
}

.author-card {
  position: relative;
  overflow: hidden;
  padding: 42px 38px;
  border-radius: 8px;
}

.author-photo {
  position: relative;
  z-index: 1;
  margin: 0 0 28px;
}

.author-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(222, 216, 203, 0.92);
  border-radius: 8px;
  object-fit: cover;
  object-position: 50% 28%;
  box-shadow: 0 18px 42px rgba(42, 42, 59, 0.13);
}

.author-photo figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px 8px 8px;
  border: 1px solid rgba(250, 248, 242, 0.4);
  border-radius: 999px;
  background: rgba(42, 42, 59, 0.78);
  color: var(--ivory);
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.author-mark-small {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--dark-purple);
  font-family: var(--serif);
  font-size: 0.86rem;
}

.author-card-label,
.product-type,
.status {
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.author-card ul,
.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.author-card li,
.check-list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  color: var(--ink);
  font-weight: 600;
}

.author-card li::before,
.check-list li::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--sage);
  content: "";
}

.corner-leaf {
  position: absolute;
  right: -38px;
  bottom: -34px;
  width: 165px;
  height: 165px;
  border-radius: 100% 0 100% 0;
  background: rgba(111, 146, 120, 0.18);
  transform: rotate(20deg);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered p:not(.eyebrow) {
  max-width: 700px;
  margin-inline: auto;
}

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

.philosophy-card {
  min-height: 290px;
  padding: 34px;
  border-radius: 8px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.philosophy-card:hover {
  transform: translateY(-6px);
  border-color: rgba(111, 146, 120, 0.45);
  box-shadow: 0 24px 58px rgba(42, 42, 59, 0.13);
}

.line-icon {
  display: grid;
  position: relative;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 44px;
  border: 1px solid rgba(111, 146, 120, 0.52);
  border-radius: 50%;
  background: var(--pale-sage);
}

.line-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--sage);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.55fr) minmax(220px, 0.55fr);
  gap: 18px;
}

.product-card {
  min-height: 340px;
  padding: 28px;
  border-radius: 8px;
}

.featured-product {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(221, 231, 220, 0.72), transparent 42%),
    rgba(250, 248, 242, 0.88);
}

.mini-book-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 330px;
}

.mini-book-image {
  display: block;
  width: min(220px, 100%);
  aspect-ratio: 1086 / 1448;
  border: 1px solid rgba(222, 216, 203, 0.9);
  border-radius: 8px;
  object-fit: cover;
  object-position: 50% 50%;
  box-shadow: 0 22px 52px rgba(42, 42, 59, 0.16);
  transform: rotate(-3deg);
}

.product-content h3 {
  margin-top: 8px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tags span {
  padding: 7px 11px;
  border: 1px solid rgba(111, 146, 120, 0.28);
  border-radius: 999px;
  background: rgba(221, 231, 220, 0.52);
  color: #405946;
  font-size: 0.8rem;
  font-weight: 700;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 26px;
}

.text-link {
  color: var(--dark-purple);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(200, 132, 109, 0.62);
  text-underline-offset: 5px;
}

.coming-soon {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(88, 71, 111, 0.08), transparent 60%),
    rgba(250, 248, 242, 0.78);
}

.status {
  width: fit-content;
  margin-bottom: auto;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(107, 91, 134, 0.1);
}

.featured-book {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 0.8fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: center;
}

.feature-visual {
  min-height: 600px;
}

.feature-open-image,
.feature-closed-image {
  position: absolute;
  display: block;
  border: 1px solid rgba(222, 216, 203, 0.9);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-open-image {
  left: 0;
  bottom: 0;
  width: min(470px, 84%);
  aspect-ratio: 1086 / 1448;
  object-position: 50% 50%;
  transform: rotate(2deg);
}

.feature-closed-image {
  right: 0;
  top: 30px;
  width: min(250px, 42%);
  aspect-ratio: 1086 / 1448;
  object-position: 50% 50%;
  transform: rotate(-6deg);
  box-shadow: 0 24px 60px rgba(42, 42, 59, 0.2);
}

.feature-subtitle {
  color: var(--dark-purple);
  font-family: var(--serif);
  font-size: 1.75rem;
  font-style: italic;
  line-height: 1.25;
}

.feature-title {
  margin-top: 22px;
  color: var(--dark-purple);
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 800;
}

.check-list {
  grid-template-columns: 1fr 1fr;
  margin: 26px 0 30px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 29px;
  right: 15%;
  left: 3%;
  height: 2px;
  background: rgba(111, 146, 120, 0.34);
  content: "";
}

.timeline li {
  position: relative;
  padding-top: 82px;
}

.step-icon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 1px solid rgba(111, 146, 120, 0.45);
  border-radius: 50%;
  background: var(--ivory);
  color: var(--dark-purple);
  font-family: var(--serif);
  font-size: 1.7rem;
  box-shadow: 0 12px 24px rgba(42, 42, 59, 0.08);
}

.timeline h3 {
  color: var(--dark-purple);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.timeline p {
  font-size: 0.96rem;
}

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

.stat-block {
  min-height: 180px;
  padding: 28px;
  border-radius: 8px;
}

.stat-block strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 3.7rem;
  font-weight: 400;
  line-height: 0.95;
}

.stat-block span {
  display: block;
  margin-top: 24px;
  color: var(--muted-ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.benefit-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

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

.benefit {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 0;
  padding: 0;
  border-radius: 8px;
  color: var(--ink);
  background: var(--ivory);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.benefit:hover {
  transform: translateY(-5px);
  border-color: rgba(111, 146, 120, 0.44);
  box-shadow: 0 26px 64px rgba(42, 42, 59, 0.15);
}

.benefit-image {
  display: block;
  width: 100%;
  aspect-ratio: 1448 / 940;
  object-fit: cover;
  object-position: 50% 50%;
}

.benefit-panel {
  position: relative;
  min-height: 124px;
  padding: 26px 30px 28px;
  border-top: 1px solid rgba(222, 216, 203, 0.92);
  background:
    linear-gradient(180deg, rgba(250, 248, 242, 0.92), rgba(250, 248, 242, 0.98)),
    var(--ivory);
}

.benefit-panel h3 {
  position: relative;
  z-index: 1;
  max-width: 260px;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1.02;
}

.benefit-branch {
  position: absolute;
  right: -34px;
  bottom: -13px;
  width: 210px;
  max-width: 54%;
  opacity: 0.78;
  pointer-events: none;
}

.quote-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 34px 40px;
  border-radius: 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 2.35rem;
  font-style: italic;
  line-height: 1.05;
}

.quote-card::before {
  display: block;
  width: 58px;
  height: 3px;
  margin-bottom: 28px;
  background: var(--copper);
  content: "";
}

.quote-card span {
  position: absolute;
  right: -40px;
  bottom: -50px;
  width: 170px;
  height: 170px;
  border-radius: 100% 0 100% 0;
  background: rgba(111, 146, 120, 0.15);
  transform: rotate(18deg);
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 40px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: clamp(50px, 8vw, 110px) auto;
  overflow: hidden;
  padding: clamp(42px, 7vw, 82px);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(42, 42, 59, 0.14) 1px, transparent 1px) 0 0 / 60px 60px,
    var(--dark-purple);
  box-shadow: var(--shadow);
}

.final-cta h2,
.final-cta p {
  color: var(--ivory);
}

.final-cta p {
  max-width: 700px;
  opacity: 0.86;
}

.cta-art {
  min-height: 320px;
}

.cta-book {
  position: absolute;
  right: 0;
  bottom: -20px;
  width: 270px;
  height: 338px;
  transform: rotate(-5deg);
}

.cta-book img {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(250, 248, 242, 0.28);
  border-radius: 8px;
  object-fit: cover;
  object-position: 50% 50%;
  box-shadow: 0 24px 64px rgba(18, 14, 28, 0.34);
}

.cta-leaves {
  position: absolute;
  inset: 10px 10px auto auto;
  width: 210px;
  height: 220px;
  opacity: 0.65;
}

.cta-leaves span:nth-child(1) {
  top: 46px;
  left: 22px;
  transform: rotate(-24deg);
}

.cta-leaves span:nth-child(2) {
  top: 86px;
  left: 66px;
  transform: rotate(24deg);
}

.cta-leaves span:nth-child(3) {
  top: 132px;
  left: 38px;
  transform: rotate(-8deg);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 38px 0;
  border-top: 1px solid var(--border);
}

.site-footer p {
  max-width: 360px;
  margin: 10px 0 0;
  font-size: 0.95rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-content: start;
  justify-content: flex-end;
  color: var(--muted-ink);
  font-weight: 700;
}

.copyright {
  grid-column: 1 / -1;
  color: var(--muted-ink);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(6px);
  transition:
    opacity 700ms ease,
    transform 700ms ease,
    filter 700ms ease;
}

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

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}

.delay-3 {
  transition-delay: 320ms;
}

.delay-4 {
  transition-delay: 420ms;
}

@keyframes botanicalDrift {
  from {
    transform: rotate(-2deg) translateY(0);
  }

  to {
    transform: rotate(3deg) translateY(10px);
  }
}

@keyframes bookEntrance {
  from {
    opacity: 0;
    transform: perspective(1100px) rotateY(-24deg) rotateZ(5deg) translateY(26px);
  }

  to {
    opacity: 1;
    transform: perspective(1100px) rotateY(-18deg) rotateZ(2deg) translateY(0);
  }
}

@keyframes bookEntranceImage {
  from {
    opacity: 0;
    transform: rotate(4deg) translateY(26px);
  }

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

@media (max-width: 1120px) {
  h1 {
    font-size: 6.4rem;
  }

  h2 {
    font-size: 4.15rem;
  }

  h3 {
    font-size: 1.82rem;
  }

  .hero,
  .about,
  .featured-book,
  .benefit-layout,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 580px;
  }

  .feature-visual {
    width: min(100%, 640px);
    min-height: 560px;
    margin-inline: auto;
  }

  .feature-open-image {
    left: 28px;
    width: min(420px, 72%);
  }

  .feature-closed-image {
    right: 28px;
    width: min(220px, 38%);
  }

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

  .featured-product {
    grid-column: 1 / -1;
  }

  .stats-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-cta {
    padding-right: clamp(32px, 7vw, 82px);
  }
}

@media (max-width: 860px) {
  .site-header {
    top: 10px;
  }

  .nav-shell {
    grid-template-columns: auto auto;
    gap: 8px 16px;
    border-radius: 26px;
  }

  .nav-links {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 2px 4px;
  }

  .card-grid.three,
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline {
    gap: 0;
    margin-top: 36px;
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 30px;
    width: 2px;
    height: auto;
  }

  .timeline li {
    min-height: 154px;
    padding: 0 0 32px 88px;
  }

  .step-icon {
    left: 0;
  }
}

@media (max-width: 680px) {
  .section-pad,
  .final-cta,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 3.15rem;
  }

  h3 {
    font-size: 1.62rem;
  }

  p {
    font-size: 1rem;
  }

  .hero-subhead {
    font-size: 1.1rem;
  }

  .nav-shell {
    padding: 10px 12px;
  }

  .nav-cta {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 0.82rem;
  }

  .brand {
    font-size: 1.25rem;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-book-image {
    right: 0;
    width: min(430px, 92%);
  }

  .open-book,
  .hero-open {
    width: min(100%, 360px);
  }

  .hero-open {
    right: 0;
  }

  .page {
    padding: 20px 16px;
  }

  .page h3 {
    font-size: 1.25rem;
  }

  .product-grid,
  .featured-product,
  .stats-grid,
  .benefit-grid,
  .check-list {
    grid-template-columns: 1fr;
  }

  .featured-product {
    gap: 12px;
  }

  .product-card,
  .author-card,
  .philosophy-card,
  .stat-block,
  .quote-card {
    padding: 24px;
  }

  .feature-visual {
    width: min(100%, 390px);
    min-height: 430px;
  }

  .feature-open-image {
    left: 0;
    width: min(300px, 78%);
  }

  .feature-closed-image {
    right: 0;
    width: min(145px, 38%);
    top: 16px;
  }

  .benefit-grid {
    gap: 18px;
  }

  .benefit-panel {
    min-height: 108px;
    padding: 22px 24px 24px;
  }

  .benefit-panel h3 {
    max-width: 230px;
    font-size: 1.72rem;
  }

  .benefit-branch {
    right: -42px;
    width: 190px;
  }

  .stat-block strong {
    font-size: 2.85rem;
  }

  .quote-card {
    font-size: 2.08rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
