:root {
  --ink-black: #100806;
  --book-leather: #211005;
  --dark-bronze: #3a210e;
  --walnut: #603315;
  --copper: #a45f22;
  --antique-gold: #b88628;
  --bright-gold: #d2a24a;
  --old-parchment: #e5c38f;
  --soft-parchment: #f1d9b2;
  --ivory: #fff1d4;
  --chef-white: #f7efe4;
  --leaf-shadow: #333016;
  --muted-brown: #705b42;
  --sage: #5d783e;
  --wine: #7a1f35;
  --drink-blue: #2d6381;
  --line-gold: rgba(184, 134, 40, 0.42);
  --shadow-deep: 0 32px 90px rgba(16, 8, 6, 0.26);
  --ease-luxury: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-black);
  background: var(--ivory);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

@keyframes bookReveal {
  from {
    opacity: 0;
    transform: translateY(18px) rotate(0deg) scale(0.985);
  }

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

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 780ms var(--ease-luxury),
    transform 780ms var(--ease-luxury);
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 5vw, 58px);
  color: var(--ivory);
  background: rgba(16, 8, 6, 0.78);
  border-bottom: 1px solid rgba(210, 162, 74, 0.18);
  backdrop-filter: blur(18px);
  animation: fadeDown 720ms var(--ease-luxury) both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(210, 162, 74, 0.7);
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: rgba(255, 241, 212, 0.84);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a {
  text-decoration: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 86vh;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  overflow: hidden;
  padding: 112px clamp(20px, 6vw, 86px) 56px;
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(16, 8, 6, 0.97) 0%, rgba(33, 16, 5, 0.92) 48%, rgba(33, 16, 5, 0.72) 100%),
    url("assets/featured-recipes/creamy-marry-me-chicken.webp") center / cover no-repeat,
    var(--book-leather);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  min-width: 0;
}

.hero-copy > .eyebrow,
.hero-copy > h1,
.hero-copy > .lead,
.hero-proof,
.pain-list,
.hero-actions,
.microcopy,
.hero-trust {
  animation: riseIn 820ms var(--ease-luxury) both;
}

.hero-copy > h1 {
  animation-delay: 80ms;
}

.hero-copy > .lead {
  animation-delay: 150ms;
}

.hero-proof {
  animation-delay: 220ms;
}

.pain-list {
  animation-delay: 300ms;
}

.hero-actions {
  animation-delay: 380ms;
}

.microcopy,
.hero-trust {
  animation-delay: 460ms;
}

.eyebrow,
.badge,
.price-ticket span {
  margin: 0 0 12px;
  color: var(--bright-gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

a,
span,
li,
summary {
  overflow-wrap: break-word;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.94;
}

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: 5.7rem;
}

h2 {
  max-width: 860px;
  margin-bottom: 20px;
  font-size: 4.25rem;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.lead {
  max-width: 690px;
  margin-bottom: 24px;
  color: rgba(255, 241, 212, 0.85);
  font-size: 1.16rem;
}

.hero-proof {
  display: grid;
  max-width: 680px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.hero-proof div {
  min-height: 98px;
  padding: 16px;
  border: 1px solid rgba(210, 162, 74, 0.24);
  border-radius: 8px;
  background: rgba(255, 241, 212, 0.07);
  transition:
    transform 260ms var(--ease-soft),
    border-color 260ms var(--ease-soft),
    background 260ms var(--ease-soft);
}

.hero-proof strong {
  display: block;
  color: var(--bright-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.45rem;
  line-height: 0.9;
}

.hero-proof span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 241, 212, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pain-list {
  display: grid;
  max-width: 690px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.pain-list p {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(210, 162, 74, 0.24);
  border-radius: 8px;
  background: rgba(255, 241, 212, 0.06);
  color: rgba(255, 241, 212, 0.78);
  font-size: 0.93rem;
  line-height: 1.45;
  transition:
    transform 260ms var(--ease-soft),
    border-color 260ms var(--ease-soft),
    background 260ms var(--ease-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}

.button {
  display: inline-flex;
  position: relative;
  overflow: hidden;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  isolation: isolate;
  transition:
    transform 220ms var(--ease-soft),
    box-shadow 220ms var(--ease-soft),
    background 220ms var(--ease-soft),
    border-color 220ms var(--ease-soft);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.primary {
  color: var(--ink-black);
  background: linear-gradient(180deg, #f0cb78, var(--antique-gold));
  box-shadow: 0 18px 40px rgba(184, 134, 40, 0.28);
}

.primary:hover,
.primary:focus-visible {
  box-shadow: 0 22px 48px rgba(184, 134, 40, 0.34);
}

.secondary {
  color: var(--ivory);
  border-color: rgba(255, 241, 212, 0.38);
  background: rgba(255, 241, 212, 0.08);
}

.secondary:hover,
.secondary:focus-visible {
  border-color: rgba(255, 241, 212, 0.56);
  background: rgba(255, 241, 212, 0.12);
}

.wide {
  width: 100%;
}

button.button {
  cursor: pointer;
  font-family: inherit;
}

.microcopy {
  margin: 0;
  color: rgba(255, 241, 212, 0.66);
  font-size: 0.95rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.trust-strip span,
.checkout-trust span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 8px 10px 8px 26px;
  border: 1px solid rgba(210, 162, 74, 0.24);
  border-radius: 999px;
  color: rgba(255, 241, 212, 0.78);
  background:
    radial-gradient(circle at 13px 17px, var(--bright-gold) 0 4px, transparent 5px),
    rgba(255, 241, 212, 0.06);
  font-size: 0.8rem;
  font-weight: 800;
}

.book-offer {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  justify-items: center;
  min-width: 0;
}

.hero-book {
  width: min(330px, 100%);
  margin: 0;
  transform: rotate(1.5deg);
  transform-origin: 50% 70%;
  animation: bookReveal 960ms 180ms var(--ease-luxury) both;
  transition: transform 420ms var(--ease-soft);
}

.hero-book img {
  width: 100%;
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(210, 162, 74, 0.72);
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow:
    0 34px 80px rgba(16, 8, 6, 0.52),
    14px 14px 0 rgba(184, 134, 40, 0.12);
  transition:
    border-color 260ms var(--ease-soft),
    box-shadow 260ms var(--ease-soft);
}

.price-ticket {
  width: min(330px, 100%);
  padding: 16px 18px;
  border: 1px solid rgba(210, 162, 74, 0.78);
  border-radius: 8px;
  background: rgba(16, 8, 6, 0.94);
  box-shadow: 0 18px 44px rgba(16, 8, 6, 0.28);
  animation: riseIn 860ms 300ms var(--ease-luxury) both;
}

.price-ticket div,
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

del {
  color: rgba(255, 241, 212, 0.54);
  font-size: 1.15rem;
}

.price-ticket strong,
.price-row strong {
  color: var(--bright-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.75rem;
  line-height: 1;
}

.urgency-note {
  margin: 10px 0 0;
  color: rgba(255, 241, 212, 0.62);
  font-size: 0.82rem;
}

.urgency-strip {
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(33, 16, 5, 0.98), rgba(96, 51, 21, 0.96)),
    var(--book-leather);
  border-top: 1px solid rgba(210, 162, 74, 0.28);
  border-bottom: 1px solid rgba(210, 162, 74, 0.22);
}

.urgency-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.urgency-layout .eyebrow {
  margin-bottom: 4px;
}

.urgency-layout strong {
  display: block;
  color: var(--ivory);
  font-size: 1.08rem;
  line-height: 1.35;
}

.urgency-layout span {
  display: block;
  color: rgba(255, 241, 212, 0.68);
  font-size: 0.94rem;
}

.urgency-layout .button {
  flex: 0 0 auto;
  min-height: 48px;
}

.section,
.problem-band,
.social-proof-section,
.look-section,
.preview-section,
.checkout-flow-section,
.faq-section,
.offer-section {
  padding: 96px clamp(20px, 5vw, 64px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.problem-band {
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(96, 51, 21, 0.88), rgba(33, 16, 5, 0.94)),
    var(--walnut);
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 64px;
  align-items: start;
}

.problem-copy p {
  margin-bottom: 18px;
  color: rgba(255, 241, 212, 0.78);
  font-size: 1.08rem;
}

.problem-copy p:last-child {
  margin-bottom: 0;
}

.section {
  background:
    radial-gradient(circle at 12% 8%, rgba(210, 162, 74, 0.16), transparent 30%),
    var(--ivory);
}

.social-proof-section {
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(16, 8, 6, 0.98), rgba(58, 33, 14, 0.94)),
    var(--ink-black);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.proof-layout > div > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 241, 212, 0.74);
  font-size: 1.08rem;
}

.proof-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.proof-card-grid article {
  min-height: 292px;
  padding: 24px;
  border: 1px solid rgba(210, 162, 74, 0.25);
  border-radius: 8px;
  background: rgba(255, 241, 212, 0.07);
  box-shadow: 0 18px 48px rgba(16, 8, 6, 0.18);
  transition:
    transform 300ms var(--ease-soft),
    border-color 300ms var(--ease-soft),
    box-shadow 300ms var(--ease-soft),
    background 300ms var(--ease-soft);
}

.proof-card-grid article:nth-child(1) {
  border-top: 4px solid var(--bright-gold);
}

.proof-card-grid article:nth-child(2) {
  border-top: 4px solid var(--sage);
}

.proof-card-grid article:nth-child(3) {
  border-top: 4px solid var(--wine);
}

.proof-card-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--bright-gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-card-grid h3 {
  color: var(--ivory);
}

.proof-card-grid p {
  margin: 0;
  color: rgba(255, 241, 212, 0.68);
}

.section-heading {
  margin-bottom: 38px;
}

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

.value-grid article {
  min-height: 285px;
  padding: 28px;
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px 48px rgba(58, 33, 14, 0.08);
  transition:
    transform 300ms var(--ease-soft),
    border-color 300ms var(--ease-soft),
    box-shadow 300ms var(--ease-soft),
    background 300ms var(--ease-soft);
}

.value-grid span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 50%;
  color: var(--ivory);
  background: var(--dark-bronze);
  font-weight: 900;
}

.value-grid p {
  margin: 0;
  color: var(--muted-brown);
}

.look-section {
  position: relative;
  overflow: hidden;
  color: var(--ink-black);
  background:
    linear-gradient(115deg, rgba(255, 241, 212, 0.98) 0%, rgba(247, 231, 196, 0.96) 43%, rgba(229, 195, 143, 0.9) 100%),
    linear-gradient(180deg, transparent, rgba(184, 134, 40, 0.1)),
    var(--soft-parchment);
}

.look-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(58, 33, 14, 0.05), transparent 25%, rgba(58, 33, 14, 0.08)),
    repeating-linear-gradient(90deg, rgba(58, 33, 14, 0.035) 0 1px, transparent 1px 68px);
  opacity: 0.45;
  pointer-events: none;
}

.look-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 0.56fr) minmax(620px, 1fr);
  gap: clamp(48px, 6vw, 92px);
  align-items: center;
}

.look-copy {
  max-width: 560px;
}

.look-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 24px;
  color: var(--muted-brown);
  font-size: 1.08rem;
}

.proof-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid rgba(184, 134, 40, 0.26);
  border-bottom: 1px solid rgba(184, 134, 40, 0.26);
  list-style: none;
}

.proof-list li {
  min-height: 44px;
  padding: 4px 0 4px 32px;
  color: var(--dark-bronze);
  font-weight: 750;
  line-height: 1.48;
  background:
    radial-gradient(circle at 8px 16px, var(--antique-gold) 0 4px, transparent 5px)
    no-repeat;
}

.inline-preview-button {
  width: fit-content;
  margin-top: 28px;
  color: var(--ink-black);
  border-color: rgba(184, 134, 40, 0.42);
}

.book-preview-grid {
  position: relative;
  display: grid;
  min-height: 665px;
  isolation: isolate;
}

.book-preview-grid::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 5%;
  bottom: 11%;
  left: 15%;
  height: 52%;
  border: 1px solid rgba(184, 134, 40, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 241, 212, 0.56), rgba(184, 134, 40, 0.16)),
    rgba(255, 255, 255, 0.2);
  box-shadow:
    0 34px 92px rgba(58, 33, 14, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.72) inset;
  transform: rotate(-1deg);
}

.book-preview-grid::after {
  content: "";
  position: absolute;
  z-index: -2;
  right: 10%;
  bottom: 5%;
  left: 10%;
  height: 32px;
  border-radius: 50%;
  background: rgba(58, 33, 14, 0.24);
  filter: blur(18px);
  pointer-events: none;
}

.page-preview {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(184, 134, 40, 0.44);
  border-radius: 8px;
  background: var(--ivory);
  box-shadow:
    0 28px 78px rgba(58, 33, 14, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.68) inset;
  cursor: zoom-in;
  transition:
    transform 320ms var(--ease-soft),
    border-color 320ms var(--ease-soft),
    box-shadow 320ms var(--ease-soft);
}

.page-preview.main {
  z-index: 2;
  top: 6%;
  left: 1%;
  width: min(61%, 455px);
  transform: rotate(-0.8deg);
}

.page-preview:not(.main) {
  right: 1%;
  width: min(37%, 288px);
}

.page-preview:nth-child(2) {
  z-index: 3;
  top: 2%;
  transform: rotate(0.8deg);
}

.page-preview:nth-child(3) {
  z-index: 4;
  right: 2%;
  bottom: 1%;
  transform: rotate(-0.4deg);
}

.page-preview img {
  width: 100%;
  height: auto;
  background: var(--ivory);
  object-fit: contain;
}

.page-preview figcaption {
  position: absolute;
  right: auto;
  bottom: 14px;
  left: 50%;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  max-width: calc(100% - 28px);
  padding: 8px 12px;
  border: 1px solid rgba(210, 162, 74, 0.34);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(33, 16, 5, 0.76);
  backdrop-filter: blur(10px);
  font-size: 0.74rem;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 14px 30px rgba(16, 8, 6, 0.2);
  transform: translateX(-50%);
  white-space: nowrap;
}

.preview-section {
  color: var(--ivory);
  background:
    linear-gradient(180deg, rgba(16, 8, 6, 0.96), rgba(16, 8, 6, 1)),
    var(--ink-black);
}

.preview-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 38px;
}

.preview-heading p:last-child {
  margin: 0;
  color: rgba(255, 241, 212, 0.72);
}

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

.recipe-card {
  overflow: hidden;
  border: 1px solid rgba(210, 162, 74, 0.22);
  border-radius: 8px;
  background: rgba(255, 241, 212, 0.07);
  transition:
    transform 320ms var(--ease-soft),
    border-color 320ms var(--ease-soft),
    box-shadow 320ms var(--ease-soft),
    background 320ms var(--ease-soft);
}

.recipe-card.feature {
  grid-column: span 2;
  grid-row: span 2;
}

.recipe-card img {
  width: 100%;
  aspect-ratio: 1.46;
  object-fit: cover;
}

.recipe-card.feature img {
  aspect-ratio: 1.35;
}

.recipe-card-body {
  display: grid;
  align-content: start;
  min-height: 170px;
  padding: 18px;
}

.recipe-card.feature .recipe-card-body {
  min-height: 204px;
  padding: 22px;
}

.category-pill {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--ivory);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.category-pill.breakfast {
  background: var(--antique-gold);
}

.category-pill.lunch {
  background: var(--sage);
}

.category-pill.dinner {
  background: var(--wine);
}

.category-pill.dessert {
  background: var(--copper);
}

.category-pill.drink {
  background: var(--drink-blue);
}

.recipe-card h3 {
  margin-bottom: 8px;
  color: var(--ivory);
}

.recipe-card p {
  margin: 0;
  color: rgba(255, 241, 212, 0.68);
  font-size: 0.94rem;
  line-height: 1.5;
}

.checkout-flow-section {
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(16, 8, 6, 0.97), rgba(58, 33, 14, 0.95)),
    var(--book-leather);
}

.checkout-flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(210, 162, 74, 0.28);
  border-radius: 8px;
  background: rgba(255, 241, 212, 0.07);
  transition:
    transform 300ms var(--ease-soft),
    border-color 300ms var(--ease-soft),
    background 300ms var(--ease-soft);
}

.step-grid span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 50%;
  color: var(--ink-black);
  background: var(--bright-gold);
  font-weight: 900;
}

.step-grid p {
  margin: 0;
  color: rgba(255, 241, 212, 0.72);
}

.faq-section {
  background:
    linear-gradient(135deg, rgba(255, 241, 212, 0.98), rgba(241, 217, 178, 0.92)),
    var(--ivory);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.faq-layout > div > p:last-child {
  max-width: 560px;
  margin: 0;
  color: var(--muted-brown);
  font-size: 1.05rem;
}

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

.faq-list details {
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 0 16px 38px rgba(58, 33, 14, 0.06);
  transition:
    border-color 260ms var(--ease-soft),
    box-shadow 260ms var(--ease-soft),
    background 260ms var(--ease-soft);
}

.faq-list summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--dark-bronze);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  display: inline-grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--ivory);
  background: var(--book-leather);
  font-size: 1rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted-brown);
}

.offer-section {
  background:
    linear-gradient(135deg, rgba(255, 241, 212, 0.96), rgba(229, 195, 143, 0.86)),
    var(--soft-parchment);
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 70px;
  align-items: center;
}

.offer-layout > div > p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 24px;
  color: var(--muted-brown);
  font-size: 1.08rem;
}

.final-proof-strip {
  display: grid;
  max-width: 720px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.final-proof-strip span {
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid rgba(184, 134, 40, 0.36);
  border-radius: 8px;
  color: var(--dark-bronze);
  background: rgba(255, 255, 255, 0.32);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
}

.checkout-card {
  padding: 32px;
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  background: rgba(255, 241, 212, 0.82);
  box-shadow: var(--shadow-deep);
  transition:
    transform 320ms var(--ease-soft),
    border-color 320ms var(--ease-soft),
    box-shadow 320ms var(--ease-soft);
}

.checkout-card .badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ivory);
  background: var(--book-leather);
}

.price-row {
  justify-content: flex-start;
  margin-bottom: 8px;
}

.price-row del {
  color: rgba(33, 16, 5, 0.52);
}

.price-row strong {
  color: var(--dark-bronze);
}

.savings {
  margin-bottom: 22px;
  color: var(--walnut);
  font-weight: 800;
}

.checkout-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.checkout-card li {
  padding-left: 28px;
  color: var(--muted-brown);
  background:
    radial-gradient(circle at 7px 13px, var(--antique-gold) 0 5px, transparent 6px)
    no-repeat;
}

.checkout-trust {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.checkout-trust span {
  border-color: rgba(184, 134, 40, 0.32);
  color: var(--dark-bronze);
  background:
    radial-gradient(circle at 13px 17px, var(--antique-gold) 0 4px, transparent 5px),
    rgba(255, 255, 255, 0.28);
}

@media (hover: hover) and (pointer: fine) {
  .book-offer:hover .hero-book {
    transform: translateY(-4px) rotate(1deg);
  }

  .book-offer:hover .hero-book img {
    border-color: rgba(210, 162, 74, 0.92);
    box-shadow:
      0 38px 88px rgba(16, 8, 6, 0.56),
      12px 12px 0 rgba(184, 134, 40, 0.13);
  }

  .hero-proof div:hover,
  .pain-list p:hover,
  .proof-card-grid article:hover,
  .value-grid article:hover,
  .step-grid article:hover {
    transform: translateY(-3px);
    border-color: rgba(210, 162, 74, 0.48);
    background: rgba(255, 241, 212, 0.1);
  }

  .value-grid article:hover {
    background: rgba(255, 255, 255, 0.48);
    box-shadow: 0 22px 54px rgba(58, 33, 14, 0.1);
  }

  .page-preview:hover,
  .recipe-card:hover,
  .checkout-card:hover {
    transform: translateY(-4px);
    border-color: rgba(210, 162, 74, 0.42);
    box-shadow: 0 24px 62px rgba(16, 8, 6, 0.18);
  }

  .page-preview.main:hover {
    transform: translateY(-4px) rotate(-0.8deg);
  }

  .page-preview:nth-child(2):hover {
    transform: translateY(-4px) rotate(0.8deg);
  }

  .page-preview:nth-child(3):hover {
    transform: translateY(-4px) rotate(-0.4deg);
  }

  .recipe-card:hover {
    background: rgba(255, 241, 212, 0.1);
  }

  .faq-list details:hover {
    border-color: rgba(184, 134, 40, 0.56);
    background: rgba(255, 255, 255, 0.46);
    box-shadow: 0 18px 42px rgba(58, 33, 14, 0.08);
  }
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 64px);
  color: rgba(255, 241, 212, 0.72);
  background: var(--ink-black);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.footer-brand {
  color: var(--ivory);
  font-weight: 900;
}

.footer-note {
  margin-top: 4px;
  color: rgba(255, 241, 212, 0.58);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}

.footer-links a {
  text-decoration: none;
}

.sticky-buy {
  display: none;
}

body.preview-lock {
  overflow: hidden;
}

.sample-modal {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 32px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease-soft);
}

.sample-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.sample-modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(16, 8, 6, 0.78);
  backdrop-filter: blur(14px);
}

.sample-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1120px, 100%);
  max-height: min(92vh, 980px);
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(210, 162, 74, 0.52);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 241, 212, 0.97), rgba(229, 195, 143, 0.9)),
    var(--ivory);
  box-shadow: 0 34px 92px rgba(16, 8, 6, 0.54);
  transform: translateY(12px) scale(0.985);
  transition: transform 260ms var(--ease-luxury);
}

.sample-modal.is-open .sample-modal-panel {
  transform: translateY(0) scale(1);
}

.sample-modal-header,
.sample-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px clamp(74px, 7vw, 96px);
  text-align: center;
}

.sample-modal-header {
  border-bottom: 1px solid rgba(184, 134, 40, 0.28);
}

.sample-modal-header h2 {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.8vw, 3.45rem);
}

.sample-close,
.sample-nav {
  min-height: 42px;
  border: 1px solid rgba(96, 51, 21, 0.24);
  border-radius: 999px;
  color: var(--dark-bronze);
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  transition:
    transform 180ms var(--ease-soft),
    border-color 180ms var(--ease-soft),
    background 180ms var(--ease-soft);
}

.sample-close:focus,
.sample-nav:focus {
  outline: none;
}

.sample-close:focus-visible,
.sample-nav:focus-visible {
  border-color: var(--antique-gold);
  box-shadow: 0 0 0 3px rgba(184, 134, 40, 0.18);
}

.sample-close {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--dark-bronze);
  background: rgba(255, 241, 212, 0.86);
  font-family: Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 1;
}

.sample-viewer {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(92px, auto) minmax(0, 1fr) minmax(92px, auto);
  gap: 18px;
  align-items: start;
  padding: 28px clamp(14px, 3vw, 28px) 22px;
}

.sample-page {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  justify-items: center;
  margin: 0;
}

.sample-page img {
  width: min(100%, 405px);
  max-height: min(48vh, 500px);
  margin: 0 auto;
  border: 1px solid rgba(184, 134, 40, 0.36);
  border-radius: 8px;
  background: var(--ivory);
  box-shadow: 0 18px 56px rgba(58, 33, 14, 0.18);
  object-fit: contain;
}

.sample-page figcaption {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.sample-page figcaption strong {
  display: block;
  margin-bottom: 6px;
  color: var(--dark-bronze);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  line-height: 1;
}

.sample-page figcaption span {
  display: block;
  color: var(--muted-brown);
  font-size: 0.98rem;
}

.sample-nav {
  width: 104px;
  align-self: center;
  padding: 10px 12px;
}

.sample-footer {
  justify-content: center;
  padding-block: 18px;
  border-top: 1px solid rgba(184, 134, 40, 0.28);
}

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

  h2 {
    font-size: 3.55rem;
  }

  .hero {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 40px;
  }

  .lead {
    margin-bottom: 18px;
    font-size: 1.05rem;
  }

  .hero-proof {
    margin-bottom: 14px;
  }

  .hero-proof div {
    min-height: 82px;
    padding: 12px;
  }

  .hero-proof strong {
    font-size: 2.05rem;
  }

  .hero-proof span {
    font-size: 0.78rem;
  }

  .pain-list {
    margin-bottom: 20px;
  }

  .pain-list p {
    padding: 12px;
    font-size: 0.86rem;
  }

  .button {
    min-height: 50px;
  }

  .problem-layout,
  .proof-layout,
  .look-layout,
  .preview-heading,
  .checkout-flow-layout,
  .faq-layout,
  .offer-layout {
    grid-template-columns: 1fr;
  }

  .look-layout {
    gap: 42px;
  }

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

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

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

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

  .book-preview-grid {
    min-height: auto;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.74fr);
    gap: 16px;
    align-items: start;
  }

  .book-preview-grid::before,
  .book-preview-grid::after {
    display: none;
  }

  .page-preview,
  .page-preview.main,
  .page-preview:not(.main),
  .page-preview:nth-child(2),
  .page-preview:nth-child(3) {
    position: relative;
    inset: auto;
    width: auto;
    transform: none;
  }

  .page-preview.main {
    grid-row: span 2;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .book-offer {
    justify-items: start;
  }

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

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

@media (max-width: 720px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding-top: 104px;
    background-position: center;
  }

  .hero-copy,
  .lead,
  .microcopy,
  .pain-list,
  .hero-actions,
  .hero-trust {
    width: 100%;
    max-width: 100%;
  }

  .urgency-layout {
    display: grid;
    gap: 16px;
  }

  .urgency-layout .button {
    width: 100%;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .hero-proof,
  .value-grid,
  .proof-card-grid,
  .book-preview-grid,
  .step-grid,
  .recipe-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-proof div {
    display: grid;
    min-height: 72px;
    min-width: 0;
    align-content: center;
    justify-items: center;
    padding: 10px 6px;
    text-align: center;
  }

  .hero-proof div:nth-child(3) {
    grid-column: auto;
  }

  .hero-proof strong {
    font-size: 1.62rem;
  }

  .hero-proof span {
    margin-top: 5px;
    font-size: 0.58rem;
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .pain-list {
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(210, 162, 74, 0.22);
    border-radius: 8px;
    background: rgba(255, 241, 212, 0.06);
  }

  .pain-list p {
    padding: 0 0 0 22px;
    border: 0;
    background:
      radial-gradient(circle at 6px 11px, var(--bright-gold) 0 4px, transparent 5px)
      no-repeat;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .trust-strip {
    display: grid;
  }

  .trust-strip span {
    border-radius: 8px;
  }

  .book-offer {
    width: 100%;
    justify-items: center;
    margin-top: 8px;
  }

  .hero-book {
    width: min(280px, 100%);
    justify-self: center;
  }

  .price-ticket {
    width: min(330px, 100%);
    justify-self: center;
  }

  .page-preview.main,
  .recipe-card.feature {
    grid-row: auto;
    grid-column: auto;
  }

  .page-preview img {
    height: auto;
  }

  .recipe-card-body,
  .recipe-card.feature .recipe-card-body {
    min-height: auto;
  }

  .value-grid article,
  .proof-card-grid article,
  .step-grid article {
    min-height: auto;
  }

  #inside .section-heading {
    max-width: 360px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  #inside .section-heading h2 {
    margin-right: auto;
    margin-left: auto;
  }

  .value-grid {
    gap: 16px;
  }

  .value-grid article {
    position: relative;
    display: grid;
    min-height: 218px;
    align-content: center;
    justify-items: center;
    padding: 30px 24px 28px;
    text-align: center;
    border-color: rgba(184, 134, 40, 0.38);
    background:
      radial-gradient(circle at 50% 0%, rgba(210, 162, 74, 0.16), transparent 58%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 241, 212, 0.36));
    box-shadow: 0 18px 46px rgba(58, 33, 14, 0.1);
  }

  .value-grid article::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 50%;
    width: 46px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(184, 134, 40, 0.66), transparent);
    transform: translateX(-50%);
  }

  .value-grid span {
    width: 42px;
    height: 42px;
    margin: 0 auto 22px;
    font-size: 0.86rem;
    box-shadow:
      inset 0 0 0 1px rgba(255, 241, 212, 0.2),
      0 8px 20px rgba(58, 33, 14, 0.16);
  }

  .value-grid h3 {
    max-width: 260px;
    margin-right: auto;
    margin-left: auto;
  }

  .value-grid p {
    max-width: 290px;
    margin-right: auto;
    margin-left: auto;
    line-height: 1.55;
  }

  .final-proof-strip {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
    align-items: start;
    padding-bottom: 112px;
  }

  .sample-modal {
    padding: 10px;
  }

  .sample-modal-panel {
    width: min(100%, 390px);
    grid-template-rows: auto minmax(0, 1fr) auto;
    max-height: 94vh;
  }

  .sample-modal-header,
  .sample-footer {
    display: grid;
    position: relative;
    z-index: 2;
    justify-items: center;
    text-align: center;
    background: rgba(255, 241, 212, 0.94);
  }

  .sample-modal-header {
    padding: 18px 62px 14px;
  }

  .sample-modal-header h2 {
    max-width: 260px;
    font-size: 1.32rem;
    line-height: 1.06;
  }

  .sample-footer .button {
    width: min(100%, 320px);
    justify-self: center;
  }

  .sample-close {
    top: 12px;
    left: 12px;
    width: 38px;
    height: 38px;
    min-height: 38px;
    font-size: 1.28rem;
  }

  .sample-viewer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    align-content: start;
    justify-items: center;
    gap: 10px;
    overflow-y: auto;
    padding-block: 12px;
  }

  .sample-page {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 10px;
    align-self: start;
    justify-items: center;
    text-align: center;
  }

  .sample-page img {
    width: min(100%, 318px);
    max-height: 42vh;
  }

  .sample-page figcaption strong {
    margin-bottom: 4px;
    font-size: 1.32rem;
    line-height: 1.05;
  }

  .sample-page figcaption span {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .sample-nav {
    width: 100%;
  }

  .sample-nav.previous {
    order: 2;
  }

  .sample-page {
    order: 1;
  }

  .sample-nav.next {
    order: 3;
  }

  .sample-footer {
    padding-block: 14px;
  }

  body {
    padding-bottom: 82px;
  }

  .sticky-buy {
    position: fixed;
    z-index: 30;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(210, 162, 74, 0.6);
    border-radius: 8px;
    background: rgba(16, 8, 6, 0.96);
    box-shadow: 0 18px 54px rgba(16, 8, 6, 0.42);
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .sticky-buy.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .sticky-buy div {
    min-width: 0;
  }

  .sticky-buy span {
    display: block;
    color: rgba(255, 241, 212, 0.68);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .sticky-buy strong {
    display: block;
    color: var(--bright-gold);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.95rem;
    line-height: 1;
  }

  .sticky-buy .button {
    width: auto;
    min-height: 46px;
    padding: 12px 16px;
  }
}

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

  h2 {
    font-size: 2.28rem;
  }

  .section,
  .problem-band,
  .social-proof-section,
  .look-section,
  .preview-section,
  .checkout-flow-section,
  .faq-section,
  .offer-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .checkout-card {
    padding: 24px;
  }
}

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

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

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
