@property --shine {
  syntax: "<percentage>";
  inherits: false;
  initial-value: -120%;
}

:root {
  --cream: #f7f0e6;
  --paper: #fffaf2;
  --warm: #eadfce;
  --plum: #6f294e;
  --plum-dark: #351529;
  --plum-ink: #24101e;
  --sage: #768169;
  --sage-dark: #4f5946;
  --saffron: #d6a74c;
  --saffron-light: #f3d68f;
  --ink: #241f21;
  --muted: #6e6568;
  --white: #fff;
  --border: rgba(53, 21, 41, .16);
  --serif: "Bodoni Moda", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --container: min(1180px, calc(100% - 40px));
  --shadow: 0 30px 80px rgba(53, 21, 41, .14);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--white);
  background: var(--plum);
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--plum-dark);
  border-radius: 999px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.read-progress {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 3px;
  background: transparent;
}

.read-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--saffron), #f2d99e, var(--plum));
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  width: var(--container);
  margin-inline: auto;
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.home-link,
.brand,
.header-cta {
  text-decoration: none;
}

.home-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.home-link span:first-child {
  font-size: 1.25rem;
  transition: transform .3s ease;
}

.home-link:hover span:first-child {
  transform: translateX(-4px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand__mark {
  width: 38px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: .92rem;
  letter-spacing: -.04em;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.brand__name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.header-cta {
  justify-self: end;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  color: var(--plum-dark);
  background: var(--cream);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--white);
}

.hero {
  min-height: min(900px, 100svh);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr);
  gap: clamp(30px, 5vw, 88px);
  align-items: center;
  padding: 144px max(20px, calc((100vw - 1180px) / 2)) 84px;
  color: var(--cream);
  background:
    radial-gradient(circle at 14% 78%, rgba(214, 167, 76, .2), transparent 30%),
    linear-gradient(118deg, var(--plum-dark), #4f1b3a 58%, #211019);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 520px;
  aspect-ratio: 1;
  left: -280px;
  bottom: -280px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, .025), 0 0 0 160px rgba(255, 255, 255, .018);
}

.hero__wash {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .16;
  background-image: repeating-linear-gradient(118deg, transparent 0 26px, rgba(255,255,255,.035) 27px);
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}

.hero__content {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--plum);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  transform-origin: left;
  transition: transform .65s cubic-bezier(.2,.75,.25,1);
}

.reveal .eyebrow::before {
  transform: scaleX(0);
}

.reveal.is-visible .eyebrow::before {
  transform: scaleX(1);
}

.hero .eyebrow,
.section--plum .eyebrow,
.section--ink .eyebrow,
.final-cta .eyebrow {
  color: var(--saffron-light);
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(3.3rem, 6.4vw, 6.6rem);
}

.hero h1 em,
.section h2 em,
.display-italic {
  color: var(--saffron-light);
  font-weight: 400;
}

.hero__lead {
  max-width: 590px;
  margin: 30px 0 26px;
  color: rgba(255, 250, 242, .8);
  font-size: clamp(1rem, 1.25vw, 1.13rem);
  line-height: 1.8;
}

.hero__lead strong {
  color: var(--white);
}

.hero__benefits {
  margin: 0 0 34px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  list-style: none;
}

.hero__benefits li {
  position: relative;
  padding-left: 19px;
  color: rgba(255, 250, 242, .74);
  font-size: .84rem;
  line-height: 1.55;
}

.hero__benefits li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--saffron);
  font-size: .67rem;
}

.button {
  --shine: -120%;
  min-height: 58px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 10px 0 27px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow: 0 16px 38px rgba(15, 6, 12, .24);
  transition: transform .3s ease, box-shadow .3s ease;
}

.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(112deg, transparent calc(var(--shine) - 22%), rgba(255,255,255,.55) var(--shine), transparent calc(var(--shine) + 22%));
  animation: buttonShine 4.8s ease-in-out infinite;
  pointer-events: none;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 21px 46px rgba(15, 6, 12, .3);
}

.button:active {
  transform: translateY(0) scale(.975);
  box-shadow: 0 10px 24px rgba(15, 6, 12, .22);
}

.button.reveal.is-visible:hover {
  transform: translateY(-3px);
}

.button.reveal.is-visible:active {
  transform: translateY(0) scale(.975);
}

.button--primary {
  color: var(--plum-dark);
  background: linear-gradient(135deg, var(--saffron-light), var(--saffron));
}

.button--light {
  color: var(--plum-dark);
  background: linear-gradient(135deg, var(--white), var(--cream));
}

.button__arrow {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--plum-dark);
  border-radius: 50%;
  font-size: 1.15rem;
  transition: transform .3s ease;
}

.button:hover .button__arrow {
  transform: rotate(45deg);
}

.button:active .button__arrow {
  transform: rotate(45deg) scale(.9);
}

@keyframes buttonShine {
  0%, 58% { --shine: -120%; }
  82%, 100% { --shine: 220%; }
}

.hero__visual {
  min-width: 0;
  position: relative;
  z-index: 1;
  padding: 24px 0 44px;
  transform-style: preserve-3d;
  transition: transform .15s ease-out;
}

.visual-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / .92;
  border-radius: 48% 48% 7px 7px;
  box-shadow: 0 40px 90px rgba(8, 2, 6, .38);
}

.visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: inherit;
  pointer-events: none;
}

.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}

.hero__visual:hover .visual-frame img {
  transform: scale(1.06);
}

.hero__seal {
  position: absolute;
  right: -20px;
  top: 4%;
  width: 116px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--plum-dark);
  background: var(--saffron-light);
  border-radius: 50%;
  box-shadow: 0 16px 40px rgba(16, 5, 12, .3);
  animation: floatSeal 4.5s ease-in-out infinite;
}

.hero__seal::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(53, 21, 41, .45);
  border-radius: inherit;
}

.hero__seal strong {
  position: relative;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.hero__seal span {
  position: relative;
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

@keyframes floatSeal {
  0%, 100% { transform: translateY(0) rotate(5deg); }
  50% { transform: translateY(-9px) rotate(2deg); }
}

.hero__caption {
  max-width: 250px;
  position: absolute;
  right: 10%;
  bottom: 2px;
  margin: 0;
  padding: 16px 20px;
  color: var(--plum-dark);
  background: var(--cream);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.3;
  box-shadow: var(--shadow);
}

.hero__caption span {
  display: block;
  color: var(--plum);
  font-family: var(--sans);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero-reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn .8s cubic-bezier(.2,.75,.25,1) forwards;
}

.hero__content > :nth-child(2) { animation-delay: .08s; }
.hero__content > :nth-child(3) { animation-delay: .16s; }
.hero__content > :nth-child(4) { animation-delay: .24s; }
.hero__content > :nth-child(5) { animation-delay: .32s; }
.hero__visual { animation-delay: .2s; }

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

.recipe-ribbon {
  overflow: hidden;
  padding: 15px 0;
  color: var(--cream);
  background: var(--saffron);
}

.recipe-ribbon div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 34px;
  animation: ribbonMove 32s linear infinite;
}

.recipe-ribbon span {
  color: var(--plum-dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.recipe-ribbon i {
  color: rgba(53, 21, 41, .42);
  font-style: normal;
  font-size: .55rem;
}

@keyframes ribbonMove {
  to { transform: translateX(-50%); }
}

.section {
  position: relative;
  padding: clamp(90px, 11vw, 160px) max(20px, calc((100vw - 1180px) / 2));
}

.page-turn {
  --turn-from: var(--paper);
  --turn-to: var(--sage-dark);
  height: clamp(58px, 7vw, 92px);
  position: relative;
  z-index: 3;
  overflow: hidden;
  margin-block: -1px;
  background: var(--turn-to);
}

.page-turn::before {
  content: "";
  position: absolute;
  inset: -2px -4% 12%;
  background: var(--turn-from);
  clip-path: polygon(0 0, 100% 0, 100% 54%, 82% 70%, 61% 59%, 42% 83%, 20% 67%, 0 88%);
  filter: drop-shadow(0 13px 12px rgba(31, 10, 24, .2));
  transform: translateY(32%) rotateX(-7deg);
  transform-origin: top;
  transition: transform 1.15s cubic-bezier(.18,.78,.2,1);
}

.page-turn.is-visible::before {
  transform: translateY(0) rotateX(0);
}

.page-turn > span {
  position: absolute;
  right: 13%;
  top: 4px;
  width: clamp(72px, 9vw, 128px);
  height: clamp(28px, 3.5vw, 48px);
  background: linear-gradient(145deg, rgba(255,255,255,.52), rgba(53,21,41,.12));
  border-radius: 0 0 70% 10%;
  box-shadow: 0 12px 18px rgba(31,10,24,.14);
  opacity: 0;
  transform: translate(25px, -18px) rotate(-7deg);
  transition: opacity .8s .2s ease, transform .9s .2s cubic-bezier(.18,.78,.2,1);
}

.page-turn.is-visible > span {
  opacity: .5;
  transform: translate(0, 0) rotate(0);
}

.page-turn--paper {
  --turn-from: var(--paper);
  --turn-to: var(--sage-dark);
}

.page-turn--sage {
  --turn-from: linear-gradient(118deg, var(--sage-dark), #394333 55%, var(--plum-dark));
  --turn-to: var(--cream);
}

.page-turn--plum {
  --turn-from: linear-gradient(138deg, var(--plum) 0%, #58213f 50%, var(--plum-dark) 100%);
  --turn-to: var(--plum-dark);
}

.section__number {
  position: absolute;
  top: 36px;
  right: max(20px, calc((100vw - 1180px) / 2));
  color: rgba(53, 21, 41, .16);
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 1;
}

.section h2 {
  font-size: clamp(2.65rem, 5vw, 5.25rem);
}

.section p {
  margin: 0 0 14px;
}

.section--plum {
  color: var(--cream);
  background:
    radial-gradient(circle at 90% 10%, rgba(214, 167, 76, .14), transparent 30%),
    var(--plum);
}

.section--plum .section__number,
.section--ink .section__number {
  color: rgba(255, 255, 255, .12);
}

.section--ink {
  color: var(--cream);
  background: var(--plum-ink);
}

.section--sage {
  color: var(--white);
  background: var(--sage-dark);
}

.section--warm {
  background: var(--warm);
}

.section--saffron {
  color: var(--plum-dark);
  background: var(--saffron-light);
}

.manifesto,
.balance,
.value,
.guarantee {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, .72fr);
  gap: clamp(60px, 10vw, 150px);
}

.manifesto {
  background:
    linear-gradient(90deg, transparent 49.9%, var(--border) 50%, transparent 50.1%),
    var(--cream);
}

.manifesto__title {
  position: sticky;
  top: 110px;
  align-self: start;
}

.manifesto__title h2 {
  max-width: 600px;
}

.display-italic {
  margin-top: 24px !important;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 3.5rem);
  font-style: italic;
  line-height: 1.15;
}

.manifesto__copy,
.balance__copy,
.value__questions {
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.13rem);
}

.callout {
  margin-block: 26px !important;
  padding: 22px 0 22px 25px;
  color: var(--plum-dark);
  border-left: 3px solid var(--saffron);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.35;
}

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

.real-life__intro {
  max-width: 900px;
  margin-bottom: 80px;
}

.real-life__intro h2 em {
  display: block;
}

.real-life__columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(50px, 9vw, 140px);
  color: rgba(255, 250, 242, .78);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.real-life__columns > div:first-child {
  padding-right: 50px;
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.product-story {
  min-height: 780px;
  display: grid;
  grid-template-columns: minmax(340px, .85fr) minmax(0, 1fr);
  gap: clamp(70px, 11vw, 160px);
  align-items: center;
  background:
    radial-gradient(circle at 8% 90%, rgba(111, 41, 78, .09), transparent 32%),
    var(--paper);
}

.product-story__book {
  min-height: 580px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.book {
  width: min(380px, 80vw);
  aspect-ratio: .73;
  position: relative;
  display: flex;
  color: var(--saffron-light);
  background: var(--plum-dark);
  box-shadow: -30px 38px 70px rgba(35, 14, 28, .24), 18px 12px 0 #ead9c3;
  transform: rotateY(-12deg) rotateZ(-2deg);
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}

.book:hover {
  transform: rotateY(-4deg) rotateZ(0);
}

.book::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(243, 214, 143, .42);
  pointer-events: none;
}

.book__spine {
  width: 46px;
  display: grid;
  place-items: center;
  padding: 18px 0;
  border-right: 1px solid rgba(243, 214, 143, .28);
  font-family: var(--serif);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.book__cover {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 45px 26px;
  text-align: center;
}

.book__cover strong {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: .95;
  text-transform: uppercase;
}

.book__cover em {
  font-weight: 400;
  text-transform: none;
}

.book__small,
.book__cover > span:last-child {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.55;
  text-transform: uppercase;
}

.book__small {
  margin-bottom: 50px;
}

.book__rule {
  width: 70px;
  height: 1px;
  margin: 50px 0 24px;
  background: var(--saffron);
}

.product-story__copy {
  max-width: 590px;
}

.product-story__copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}

.product-story__copy h2 {
  margin-bottom: 36px;
}

.contents {
  overflow: hidden;
  padding-top: clamp(105px, 12vw, 175px);
  padding-bottom: clamp(105px, 12vw, 175px);
  background:
    radial-gradient(circle at 86% 9%, rgba(214,167,76,.19), transparent 23%),
    radial-gradient(circle at 3% 73%, rgba(111,41,78,.25), transparent 27%),
    var(--sage-dark);
}

.mid-cta {
  min-height: 390px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 9vw, 120px) max(20px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(42px, 8vw, 110px);
  align-items: center;
}

.mid-cta::before,
.mid-cta::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
}

.mid-cta::after {
  z-index: -1;
  inset: auto -8% -78% auto;
  width: 520px;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255,255,255,.025), 0 0 0 120px rgba(255,255,255,.018);
  opacity: .18;
  transition: transform 1.2s cubic-bezier(.2,.75,.25,1);
}

.mid-cta:hover::after {
  transform: scale(1.06);
}

.mid-cta--sage {
  color: var(--cream);
  background: linear-gradient(118deg, var(--sage-dark), #394333 55%, var(--plum-dark));
}

.mid-cta--sage::before {
  background: radial-gradient(circle at 22% 15%, rgba(243,214,143,.14), transparent 30%);
}

.mid-cta--ink {
  color: var(--cream);
  background: linear-gradient(125deg, var(--plum-ink), #3f1c34 58%, var(--sage-dark));
}

.mid-cta--ink::before {
  background: radial-gradient(circle at 84% 25%, rgba(214,167,76,.15), transparent 30%);
}

.mid-cta__copy {
  max-width: 760px;
}

.mid-cta .eyebrow {
  color: var(--saffron-light);
}

.mid-cta h2,
.purchase-flow h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.65rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.03;
  text-wrap: balance;
}

.mid-cta__copy > p:last-child {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255,250,242,.68);
}

.mid-cta > .button {
  min-width: min(320px, 100%);
}

.culinary-motif {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  opacity: .16;
  transition: transform 1.2s cubic-bezier(.2,.75,.25,1), opacity .6s ease;
}

.mid-cta:hover .culinary-motif,
.purchase-flow:hover .culinary-motif {
  opacity: .23;
  transform: rotate(var(--motif-rotation, 0deg)) translateY(-6px);
}

.culinary-motif--herb,
.culinary-motif--sprig {
  --motif-rotation: -13deg;
  width: 230px;
  height: 340px;
  right: 7%;
  top: -92px;
  transform: rotate(var(--motif-rotation));
}

.culinary-motif--herb::before,
.culinary-motif--sprig::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 7%;
  width: 2px;
  height: 88%;
  background: currentColor;
  border-radius: 50%;
  transform: rotate(16deg);
}

.culinary-motif--herb span,
.culinary-motif--sprig span {
  position: absolute;
  width: 74px;
  height: 32px;
  border: 1px solid currentColor;
  border-radius: 100% 0 100% 0;
}

.culinary-motif--herb span:nth-child(1),
.culinary-motif--sprig span:nth-child(1) { left: 28px; top: 54px; transform: rotate(22deg); }
.culinary-motif--herb span:nth-child(2),
.culinary-motif--sprig span:nth-child(2) { right: 13px; top: 98px; transform: rotate(-37deg) scaleX(-1); }
.culinary-motif--herb span:nth-child(3),
.culinary-motif--sprig span:nth-child(3) { left: 19px; top: 158px; transform: rotate(27deg); }
.culinary-motif--herb span:nth-child(4),
.culinary-motif--sprig span:nth-child(4) { right: 5px; top: 214px; transform: rotate(-34deg) scaleX(-1); }
.culinary-motif--herb span:nth-child(5) { left: 35px; top: 270px; transform: rotate(30deg); }

.culinary-motif--plate {
  --motif-rotation: -9deg;
  width: 270px;
  aspect-ratio: 1;
  right: 6%;
  bottom: -142px;
  border: 1px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 28px transparent, inset 0 0 0 29px currentColor;
  transform: rotate(var(--motif-rotation));
}

.culinary-motif--plate span {
  position: absolute;
  top: -62px;
  width: 2px;
  height: 138px;
  background: currentColor;
  border-radius: 99px;
}

.culinary-motif--plate span:nth-child(1) { left: 42px; }
.culinary-motif--plate span:nth-child(2) { left: 54px; }
.culinary-motif--plate span:nth-child(3) { right: 45px; height: 158px; }

.contents::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .1;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255,255,255,.16) 50%, transparent 50.1%),
    radial-gradient(circle at 1px 1px, var(--white) 1px, transparent 1.2px);
  background-size: 100% 100%, 28px 28px;
  pointer-events: none;
}

.contents__masthead {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .52fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: end;
}

.contents__header {
  max-width: 760px;
}

.contents .eyebrow {
  color: var(--saffron-light);
}

.contents__edition {
  max-width: 520px;
  margin: 28px 0 0 !important;
  color: rgba(255,255,255,.62);
  font-size: clamp(.95rem, 1.3vw, 1.1rem);
}

.contents__numbers {
  min-height: 270px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  color: var(--plum-dark);
  background: var(--saffron-light);
  box-shadow: 20px 20px 0 rgba(27,34,24,.32);
}

.contents__main-number {
  grid-column: 1 / -1;
  padding: 28px 30px 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(53,21,41,.18);
}

.contents__main-number strong {
  display: flex;
  align-items: flex-start;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 7vw, 6.5rem);
  font-weight: 600;
  letter-spacing: -.08em;
  line-height: .72;
}

.contents__main-number sup {
  margin: 3px 0 0 5px;
  color: var(--plum);
  font-size: .36em;
  letter-spacing: 0;
}

.contents__main-number > span,
.contents__mini-number span {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.45;
  text-transform: uppercase;
}

.contents__main-number > span {
  max-width: 90px;
  text-align: right;
}

.contents__mini-number {
  padding: 18px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.contents__mini-number + .contents__mini-number {
  border-left: 1px solid rgba(53,21,41,.18);
}

.contents__mini-number strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
}

.contents__folio {
  position: relative;
  margin: 75px 0 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255,255,255,.48);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.contents__folio i {
  height: 1px;
  flex: 1;
  background: rgba(255,255,255,.2);
}

.chapters {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.chapter {
  min-height: 285px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(27px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--cream);
  background: #31402f;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 45px rgba(25,31,22,.16);
  transition: transform .4s cubic-bezier(.2,.75,.25,1), box-shadow .4s ease, border-color .4s ease;
}

.chapter:nth-child(1),
.chapter:nth-child(4),
.chapter:nth-child(5) {
  grid-column: span 7;
}

.chapter:nth-child(2),
.chapter:nth-child(3),
.chapter:nth-child(6) {
  grid-column: span 5;
}

.chapter:nth-child(1) {
  color: var(--plum-dark);
  background:
    radial-gradient(circle at 83% 22%, rgba(214,167,76,.28), transparent 22%),
    var(--cream);
}

.chapter:nth-child(2) {
  background:
    radial-gradient(circle at 90% 10%, rgba(243,214,143,.15), transparent 25%),
    var(--plum);
}

.chapter:nth-child(3) {
  color: var(--plum-dark);
  background: var(--saffron-light);
}

.chapter:nth-child(4) {
  background:
    linear-gradient(125deg, rgba(255,255,255,.04), transparent 50%),
    #65725b;
}

.chapter:nth-child(5) {
  background:
    radial-gradient(circle at 85% 16%, rgba(214,167,76,.16), transparent 22%),
    var(--plum-dark);
}

.chapter:nth-child(6) {
  color: var(--plum-dark);
  background: #e9dece;
}

.chapter::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 210px;
  aspect-ratio: 1;
  right: -95px;
  bottom: -110px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .09;
  box-shadow: 0 0 0 38px currentColor, 0 0 0 75px currentColor;
}

.chapter:hover {
  z-index: 2;
  border-color: rgba(243,214,143,.5);
  box-shadow: 0 28px 60px rgba(20,27,18,.28);
  transform: translateY(-7px);
}

.chapter__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.chapter__index {
  color: currentColor;
  opacity: .58;
  font-size: .59rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.chapter__symbol {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: currentColor;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.5rem;
  opacity: .72;
  transition: transform .5s ease, background .35s ease;
}

.chapter:hover .chapter__symbol {
  background: rgba(255,255,255,.12);
  transform: rotate(12deg);
}

.chapter__body {
  max-width: 480px;
  margin-top: 60px;
}

.chapter h3 {
  margin: 0 0 13px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.3vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .98;
}

.chapter p {
  max-width: 390px;
  color: currentColor;
  opacity: .72;
  font-size: .86rem;
  line-height: 1.6;
}

.chapter p strong {
  opacity: 1;
}

.chapter__line {
  width: 100%;
  height: 2px;
  position: relative;
  margin-top: 22px;
  overflow: hidden;
  background: currentColor;
  opacity: .28;
}

.chapter__line::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--chapter-fill);
  background: var(--saffron);
  transform: translateX(-105%);
  transition: transform .9s cubic-bezier(.2,.75,.25,1);
}

.chapter.is-visible .chapter__line::after,
.chapter:hover .chapter__line::after {
  transform: translateX(0);
}

.standards {
  position: relative;
  margin-top: 90px;
  padding: clamp(35px, 5vw, 65px);
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
  color: var(--plum-dark);
  background: var(--cream);
  box-shadow: 22px 22px 0 rgba(35,44,31,.38);
}

.standards .eyebrow {
  margin-bottom: 24px;
  color: var(--plum);
}

.standards__intro h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1;
}

.standards__intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
}

.standards ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border);
}

.standards li {
  min-height: 58px;
  padding: 10px 5px;
  display: grid;
  grid-template-columns: 38px 1fr 28px;
  gap: 8px;
  align-items: center;
  color: var(--plum-dark);
  border-bottom: 1px solid var(--border);
}

.standards li span {
  color: var(--plum);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.standards li strong {
  font-size: .8rem;
  font-weight: 700;
}

.standards li i {
  width: 25px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--sage-dark);
  border-radius: 50%;
  font-size: .65rem;
  font-style: normal;
}

.balance {
  background:
    radial-gradient(circle at 80% 20%, rgba(214, 167, 76, .13), transparent 30%),
    var(--cream);
}

.balance__statement > span {
  display: block;
  height: 70px;
  color: var(--plum);
  font-family: var(--serif);
  font-size: 9rem;
  line-height: 1;
}

.balance__statement .display-italic {
  color: var(--plum);
}

.balance__copy {
  padding-top: 70px;
}

.author {
  min-height: 900px;
  display: grid;
  grid-template-columns: minmax(300px, .75fr) minmax(0, 1fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: center;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: .73;
  background: var(--plum);
  border-radius: 48% 48% 2px 2px;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(36,16,30,.52));
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(.82) contrast(1.03);
  transition: transform 1s ease;
}

.portrait-frame:hover img {
  transform: scale(1.035);
}

.portrait-note {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,.5);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-align: center;
  text-transform: uppercase;
}

.author__copy h2 {
  margin-bottom: 36px;
  color: var(--saffron-light);
}

.author__copy > p:not(.eyebrow) {
  color: rgba(255,250,242,.67);
}

.author__numbers {
  margin: 34px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.author__numbers p {
  margin: 0;
  padding: 24px 18px;
  color: rgba(255,255,255,.52) !important;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.author__numbers p + p {
  border-left: 1px solid rgba(255,255,255,.16);
}

.author__numbers strong {
  display: block;
  color: var(--saffron-light);
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 1;
}

.author__principles {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.author__principles span {
  padding: 8px 13px;
  color: var(--saffron-light);
  border: 1px solid rgba(243,214,143,.28);
  border-radius: 999px;
  font-size: .7rem;
}

.audience {
  background: var(--paper);
}

.audience__heading {
  max-width: 780px;
  margin-bottom: 70px;
}

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

.audience__list li {
  position: relative;
  padding: 24px 46px 24px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.audience__list li:nth-child(odd) {
  border-right: 1px solid var(--border);
}

.audience__list li:nth-child(even) {
  padding-left: 40px;
}

.audience__list li::after {
  content: "✓";
  position: absolute;
  top: 23px;
  right: 18px;
  color: var(--plum);
  font-weight: 800;
}

.future {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .7fr);
  gap: clamp(60px, 10vw, 150px);
}

.future__intro h2 {
  max-width: 640px;
}

.future__path {
  position: relative;
  padding-left: 38px;
}

.future__path::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  bottom: 16px;
  width: 1px;
  background: rgba(53,21,41,.28);
}

.future__path p {
  position: relative;
  margin-bottom: 20px;
}

.future__path p::before {
  content: "";
  position: absolute;
  left: -37px;
  top: .65em;
  width: 11px;
  aspect-ratio: 1;
  background: var(--plum);
  border: 3px solid var(--saffron-light);
  border-radius: 50%;
}

.receive {
  background: var(--cream);
}

.receive__heading {
  max-width: 760px;
  margin-bottom: 70px;
}

.receive__list {
  border-top: 1px solid var(--border);
}

.receive-item {
  min-height: 125px;
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--border);
  transition: padding-left .3s ease, background .3s ease;
}

.receive-item:hover {
  padding-left: 18px;
  background: rgba(111,41,78,.035);
}

.receive-item > span {
  color: var(--plum);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.receive-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 2.25rem);
  font-weight: 500;
}

.receive-item p {
  color: var(--muted);
}

.value {
  color: var(--cream);
  background:
    radial-gradient(circle at 16% 13%, rgba(214,167,76,.18), transparent 25%),
    var(--plum);
  align-items: center;
}

.value__questions {
  color: rgba(255,250,242,.72);
}

.value__questions h2 {
  margin-bottom: 38px;
  color: var(--cream);
}

.value__questions strong {
  color: var(--saffron-light);
}

.offer-card {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 5vw, 64px);
  color: var(--plum-dark);
  background: var(--saffron-light);
  box-shadow: 22px 22px 0 rgba(31,10,24,.28);
}

.offer-card::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  aspect-ratio: 1;
  border: 1px solid rgba(53,21,41,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(53,21,41,.04), 0 0 0 90px rgba(53,21,41,.025);
}

.offer-card__label {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
  padding: 7px 12px;
  color: var(--cream);
  background: var(--plum);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.offer-card p {
  position: relative;
}

.offer-card__price {
  position: relative;
  display: block;
  margin: 6px 0 4px;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 8vw, 7.7rem);
  font-weight: 700;
  letter-spacing: -.07em;
  line-height: .9;
}

.offer-card__price small {
  font-size: .25em;
  letter-spacing: 0;
}

.offer-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.offer-card__line {
  width: 100%;
  height: 1px;
  margin: 28px 0;
  background: rgba(53,21,41,.22);
}

.offer-card .button {
  width: 100%;
  margin-top: 24px;
}

.purchase-flow {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(95px, 11vw, 155px) max(20px, calc((100vw - 1180px) / 2));
  color: var(--cream);
  background:
    radial-gradient(circle at 88% 12%, rgba(214,167,76,.17), transparent 27%),
    linear-gradient(138deg, var(--plum) 0%, #58213f 50%, var(--plum-dark) 100%);
}

.purchase-flow::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .08;
  background-image:
    linear-gradient(90deg, transparent 49.9%, rgba(255,255,255,.2) 50%, transparent 50.1%),
    radial-gradient(circle at 1px 1px, var(--white) 1px, transparent 1.2px);
  background-size: 100% 100%, 30px 30px;
  pointer-events: none;
}

.purchase-flow__header {
  max-width: 820px;
}

.purchase-flow .eyebrow {
  color: var(--saffron-light);
}

.purchase-flow__header > p:last-child {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255,250,242,.67);
}

.purchase-flow__steps {
  margin: clamp(60px, 8vw, 100px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.purchase-flow__steps li {
  min-height: 270px;
  position: relative;
  padding: 38px clamp(22px, 3.4vw, 46px) 42px;
  transition: opacity .75s ease, background .4s ease, transform .75s cubic-bezier(.2,.75,.25,1);
}

.purchase-flow__steps li + li {
  border-left: 1px solid rgba(255,255,255,.2);
}

.purchase-flow__steps li:hover {
  z-index: 1;
  background: rgba(255,255,255,.06);
  transform: translateY(-7px);
}

.purchase-flow__number {
  width: 52px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--plum-dark);
  background: var(--saffron-light);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1rem;
  box-shadow: 0 0 0 0 rgba(243,214,143,.18);
  transition: transform .5s cubic-bezier(.2,.75,.25,1), box-shadow .5s ease;
}

.purchase-flow__steps li:hover .purchase-flow__number {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 0 0 10px rgba(243,214,143,.1);
}

.purchase-flow__steps h3 {
  margin: 46px 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.3vw, 2.15rem);
  font-weight: 500;
  line-height: 1.15;
}

.purchase-flow__steps p {
  margin: 0;
  color: rgba(255,250,242,.62);
  font-size: .9rem;
}

.purchase-flow__steps li:nth-child(2) {
  transition-delay: .08s;
}

.purchase-flow__steps li:nth-child(3) {
  transition-delay: .16s;
}

.purchase-flow__note {
  margin: 34px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  color: var(--saffron-light);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.purchase-flow__note span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.purchase-flow__note span:not(:first-child)::before {
  content: "◆";
  font-size: .42rem;
}

.purchase-flow .culinary-motif--sprig {
  --motif-rotation: 14deg;
  right: 5%;
  top: 40px;
  color: var(--saffron-light);
  transform: rotate(var(--motif-rotation));
}

.guarantee {
  min-height: 820px;
  overflow: hidden;
  align-items: center;
  grid-template-columns: minmax(360px, .78fr) minmax(420px, 1fr);
  gap: clamp(70px, 10vw, 150px);
  background:
    radial-gradient(circle at 8% 12%, rgba(214,167,76,.18), transparent 24%),
    linear-gradient(90deg, var(--plum-dark) 0 38%, var(--paper) 38% 100%);
}

.guarantee::before {
  content: "";
  position: absolute;
  width: 420px;
  aspect-ratio: 1;
  left: -250px;
  bottom: -240px;
  border: 1px solid rgba(243,214,143,.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(243,214,143,.035),
    0 0 0 140px rgba(243,214,143,.02);
  pointer-events: none;
}

.guarantee__visual {
  width: min(470px, 100%);
  justify-self: center;
  position: relative;
  text-align: center;
}

.guarantee__image-wrap {
  position: relative;
  isolation: isolate;
  aspect-ratio: 1;
  padding: clamp(13px, 2vw, 20px);
  display: grid;
  place-items: center;
  background: rgba(255,250,242,.08);
  border: 1px solid rgba(243,214,143,.24);
  border-radius: 50%;
  box-shadow: 0 34px 80px rgba(16,5,12,.38);
}

.guarantee__image-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -17px;
  border: 1px solid rgba(243,214,143,.32);
  border-radius: 50%;
}

.guarantee__image-wrap img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}

.guarantee__orbit {
  position: absolute;
  z-index: 2;
  inset: -2px;
  border: 1px dashed rgba(243,214,143,.45);
  border-radius: 50%;
  animation: guaranteeOrbit 24s linear infinite;
  pointer-events: none;
}

.guarantee__orbit::before {
  content: "◆";
  position: absolute;
  top: 50%;
  left: -7px;
  width: 18px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--saffron-light);
  background: var(--plum-dark);
  font-size: .55rem;
  transform: translateY(-50%);
}

@keyframes guaranteeOrbit {
  to { transform: rotate(360deg); }
}

.guarantee__visual-note {
  width: max-content;
  max-width: 90%;
  margin: 28px auto 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,250,242,.72) !important;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.guarantee__visual-note span {
  color: var(--saffron-light);
  font-size: .55rem;
}

.guarantee__copy {
  max-width: 650px;
  position: relative;
}

.guarantee__copy h2 {
  margin-bottom: 30px;
}

.guarantee__copy p {
  color: var(--muted);
}

.guarantee__intro {
  margin-bottom: 30px !important;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.guarantee__intro strong {
  color: var(--plum);
}

.guarantee__steps {
  margin: 34px 0;
  display: grid;
  grid-template-columns: .75fr .75fr 1.5fr;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.guarantee__steps > div {
  min-height: 118px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: color .3s ease, background .3s ease;
}

.guarantee__steps > div + div {
  border-left: 1px solid var(--border);
}

.guarantee__steps > div:hover {
  color: var(--cream);
  background: var(--plum);
}

.guarantee__steps span {
  color: var(--plum);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .18em;
  transition: color .3s ease;
}

.guarantee__steps strong {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.1;
}

.guarantee__steps > div:hover span {
  color: var(--saffron-light);
}

.guarantee__assurances {
  margin: 28px 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.guarantee__assurances span {
  padding: 8px 14px;
  color: var(--plum);
  background: rgba(111,41,78,.07);
  border: 1px solid rgba(111,41,78,.14);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.guarantee__risk {
  margin-top: 26px !important;
  padding: 18px 20px;
  color: var(--plum-dark) !important;
  background: linear-gradient(90deg, rgba(214,167,76,.2), rgba(214,167,76,.06));
  border-left: 3px solid var(--saffron);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.35;
}

.faq {
  display: grid;
  grid-template-columns: minmax(260px, .65fr) minmax(0, 1fr);
  gap: clamp(60px, 9vw, 130px);
}

.faq__heading {
  align-self: start;
  position: sticky;
  top: 110px;
}

.faq__list {
  border-top: 1px solid rgba(53,21,41,.2);
}

.faq details {
  border-bottom: 1px solid rgba(53,21,41,.2);
}

.faq summary {
  min-height: 86px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--plum-dark);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 600;
  list-style: none;
  transition: color .3s ease, padding-left .3s ease;
}

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

.faq summary span {
  width: 34px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--plum);
  border-radius: 50%;
  font-family: var(--sans);
  transition: transform .3s ease;
}

.faq details[open] summary span {
  transform: rotate(45deg);
}

.faq summary:hover,
.faq details[open] summary {
  color: var(--plum);
  padding-left: 10px;
}

.faq details > p {
  max-width: 620px;
  padding-right: 35px;
  color: var(--muted);
}

.faq details[open] > p {
  animation: faqContentIn .4s cubic-bezier(.2,.75,.25,1) both;
}

.faq details > p:last-child {
  margin-bottom: 26px;
}

@keyframes faqContentIn {
  from {
    opacity: 0;
    transform: translateY(-7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.final-cta {
  min-height: 920px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(100px, 12vw, 170px) max(20px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(380px, .7fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
  color: var(--cream);
  background: var(--plum-dark);
}

.final-cta__texture {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 12% 15%, rgba(214,167,76,.19), transparent 25%),
    radial-gradient(circle at 85% 78%, rgba(118,129,105,.24), transparent 28%);
}

.final-cta__texture::before {
  content: "";
  position: absolute;
  width: 540px;
  aspect-ratio: 1;
  right: -230px;
  top: -230px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.018);
}

.final-cta__copy h2 {
  margin-bottom: 25px;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.final-cta__copy > p:not(.eyebrow):not(.final-cta__quote) {
  margin: 0 0 10px;
  color: rgba(255,250,242,.66);
}

.final-cta__quote {
  margin: 25px 0 !important;
  color: var(--saffron-light);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-style: italic;
}

.final-cta__copy h3 {
  max-width: 500px;
  margin-top: 32px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.final-product {
  padding: clamp(34px, 5vw, 62px);
  color: var(--plum-dark);
  background: var(--cream);
  box-shadow: 24px 24px 0 rgba(214,167,76,.8);
}

.final-product > p {
  margin: 0 0 22px;
  color: var(--plum);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.final-product h2 {
  margin-bottom: 36px;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.final-product > strong {
  display: block;
  margin-bottom: 34px;
  color: var(--plum);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  line-height: 1;
}

.final-product > strong span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: .25em;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.button--wide {
  width: 100%;
}

.sticky-buy {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: 18px;
  width: min(610px, calc(100% - 24px));
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 8px 8px 24px;
  color: var(--cream);
  background: rgba(36,16,30,.94);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  box-shadow: 0 18px 55px rgba(22,8,17,.36);
  backdrop-filter: blur(14px);
  transform: translate(-50%, 120px);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), opacity .3s ease;
}

.sticky-buy.is-visible {
  transform: translate(-50%, 0);
}

.sticky-buy div {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.sticky-buy div span {
  color: rgba(255,255,255,.58);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sticky-buy div strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.sticky-buy > a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  color: var(--plum-dark);
  background: var(--saffron-light);
  border-radius: 999px;
  text-decoration: none;
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer {
  padding: 70px 20px 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255,255,255,.5);
  background: #170a13;
  text-align: center;
}

.brand--footer {
  margin-bottom: 24px;
  color: var(--cream);
}

.site-footer p {
  margin: 3px 0;
  font-size: .72rem;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.25,1);
}

.reveal--left {
  transform: translateX(-34px);
}

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

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 136px;
  }

  .hero__content {
    max-width: 760px;
  }

  .hero__visual {
    width: min(720px, 100%);
    justify-self: center;
  }

  .visual-frame {
    aspect-ratio: 1.35;
    border-radius: 220px 220px 8px 8px;
  }

  .manifesto,
  .balance,
  .value,
  .guarantee,
  .faq,
  .future,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .manifesto {
    background: var(--cream);
  }

  .manifesto__title,
  .faq__heading {
    position: static;
  }

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

  .product-story__copy {
    max-width: 720px;
  }

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

  .contents__numbers {
    width: min(520px, 100%);
  }

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

  .chapter:nth-child(n) {
    grid-column: auto;
  }

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

  .mid-cta {
    grid-template-columns: 1fr;
  }

  .mid-cta > .button {
    width: fit-content;
  }

  .author {
    grid-template-columns: minmax(260px, .65fr) 1fr;
    gap: 50px;
  }

  .balance__copy {
    padding-top: 0;
  }

  .offer-card {
    max-width: 650px;
  }

  .purchase-flow__steps li {
    padding-inline: 28px;
  }

  .guarantee {
    grid-template-columns: 1fr;
    background:
      radial-gradient(circle at 8% 12%, rgba(214,167,76,.18), transparent 24%),
      linear-gradient(180deg, var(--plum-dark) 0 520px, var(--paper) 520px 100%);
  }

  .guarantee__visual {
    width: min(440px, 82vw);
  }

  .final-product {
    max-width: 680px;
  }
}

@media (max-width: 720px) {
  :root {
    --container: calc(100% - 28px);
  }

  html {
    scroll-padding-top: 72px;
  }

  body {
    line-height: 1.7;
  }

  .site-header {
    min-height: 72px;
    grid-template-columns: 1fr auto;
  }

  .site-header .brand {
    display: none;
  }

  .header-cta {
    min-height: 38px;
    padding-inline: 16px;
    font-size: .68rem;
  }

  .home-link {
    font-size: .68rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 38px;
    padding: 116px 20px 68px;
  }

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

  .hero__lead {
    margin-top: 24px;
  }

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

  .hero .button {
    width: 100%;
    justify-content: space-between;
  }

  .page-turn {
    display: none;
  }

  .hero__visual {
    padding: 5px 0 38px;
  }

  .visual-frame {
    aspect-ratio: .9;
    border-radius: 160px 160px 5px 5px;
  }

  .visual-frame img {
    object-position: 70% center;
  }

  .hero__seal {
    width: 92px;
    right: -5px;
    top: -18px;
  }

  .hero__seal strong {
    font-size: 1.6rem;
  }

  .hero__caption {
    right: 6%;
    bottom: 0;
    max-width: 220px;
  }

  .section {
    padding: 88px 20px;
  }

  .section__number {
    top: 22px;
    right: 20px;
    font-size: 4rem;
  }

  .section h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .manifesto,
  .balance,
  .value,
  .guarantee {
    gap: 48px;
  }

  .manifesto__copy,
  .balance__copy,
  .value__questions {
    font-size: 1rem;
  }

  .real-life__intro {
    margin-bottom: 48px;
  }

  .real-life__columns {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .real-life__columns > div:first-child {
    padding: 0 0 30px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.2);
  }

  .product-story {
    min-height: auto;
    padding-inline: 20px;
    gap: 80px;
  }

  .product-story__book {
    min-height: 470px;
  }

  .book {
    width: min(310px, 82vw);
  }

  .book__small {
    margin-bottom: 35px;
  }

  .book__rule {
    margin: 35px 0 22px;
  }

  .contents__numbers {
    min-height: 235px;
    box-shadow: 10px 10px 0 rgba(27,34,24,.32);
  }

  .contents__main-number {
    padding-inline: 22px;
  }

  .contents__mini-number {
    padding-inline: 18px;
  }

  .contents__folio {
    margin-top: 58px;
  }

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

  .chapter {
    min-height: 260px;
  }

  .chapter__body {
    margin-top: 42px;
  }

  .standards {
    margin-top: 70px;
    padding: 32px 24px;
    grid-template-columns: 1fr;
    box-shadow: 10px 10px 0 rgba(35,44,31,.38);
  }

  .mid-cta {
    min-height: auto;
    padding: 78px 20px 82px;
    gap: 38px;
  }

  .mid-cta h2,
  .purchase-flow h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .mid-cta > .button {
    width: 100%;
    min-width: 0;
    justify-content: space-between;
  }

  .culinary-motif--herb {
    right: -82px;
    top: -115px;
  }

  .culinary-motif--plate {
    right: -105px;
    bottom: -155px;
  }

  .author {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .author__portrait {
    width: min(420px, 100%);
  }

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

  .author__numbers p + p {
    border-top: 1px solid rgba(255,255,255,.16);
    border-left: 0;
  }

  .audience__heading {
    margin-bottom: 45px;
  }

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

  .audience__list li:nth-child(odd) {
    border-right: 0;
  }

  .audience__list li:nth-child(even) {
    padding-left: 0;
  }

  .future {
    gap: 45px;
  }

  .receive__heading {
    margin-bottom: 44px;
  }

  .receive-item {
    min-height: 105px;
    grid-template-columns: 50px 1fr;
  }

  .offer-card {
    margin-inline: -4px;
    box-shadow: 10px 10px 0 rgba(31,10,24,.28);
  }

  .offer-card__price {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .offer-card .button {
    padding-left: 20px;
    justify-content: space-between;
    font-size: .7rem;
  }

  .purchase-flow {
    padding: 84px 20px 92px;
  }

  .purchase-flow__steps {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .purchase-flow__steps li {
    min-height: 0;
    padding: 30px 8px 32px;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: start;
  }

  .purchase-flow__steps li + li {
    border-top: 1px solid rgba(255,255,255,.2);
    border-left: 0;
  }

  .purchase-flow__steps li:hover {
    transform: translateX(5px);
  }

  .purchase-flow__steps h3 {
    margin: 2px 0 8px;
  }

  .purchase-flow__note {
    display: grid;
    gap: 8px;
  }

  .purchase-flow__note span:not(:first-child)::before {
    content: none;
  }

  .purchase-flow .culinary-motif--sprig {
    right: -94px;
    top: 15px;
  }

  .guarantee {
    gap: 82px;
    padding-top: 78px;
    background:
      radial-gradient(circle at 8% 8%, rgba(214,167,76,.18), transparent 24%),
      linear-gradient(180deg, var(--plum-dark) 0 500px, var(--paper) 500px 100%);
  }

  .guarantee__visual {
    width: min(330px, 88vw);
  }

  .guarantee__visual-note {
    max-width: 100%;
    font-size: .58rem;
  }

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

  .guarantee__steps > div {
    min-height: 82px;
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: center;
  }

  .guarantee__steps > div + div {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .faq {
    gap: 42px;
  }

  .faq summary {
    min-height: 76px;
    font-size: 1.1rem;
  }

  .final-cta {
    min-height: auto;
    padding: 96px 20px 120px;
    gap: 58px;
  }

  .final-product {
    padding: 34px 25px;
    box-shadow: 10px 10px 0 rgba(214,167,76,.8);
  }

  .final-product .button {
    padding-left: 18px;
    justify-content: space-between;
    font-size: .67rem;
  }

  .sticky-buy {
    bottom: 10px;
    min-height: 62px;
    padding-left: 18px;
  }

  .sticky-buy div span {
    display: none;
  }

  .sticky-buy > a {
    min-height: 46px;
    padding-inline: 18px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 3rem;
  }

  .button {
    letter-spacing: .04em;
  }

  .sticky-buy > a {
    font-size: .67rem;
  }
}

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

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

  .hero-reveal,
  .reveal {
    opacity: 1;
    transform: none;
  }

  .page-turn::before,
  .page-turn > span {
    transform: none;
  }
}

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

.static-mode .hero-reveal,
.static-mode .reveal {
  opacity: 1;
  transform: none;
}

.static-mode .page-turn::before,
.static-mode .page-turn > span {
  transform: none;
}

@media (forced-colors: active) {
  .button,
  .header-cta,
  .sticky-buy > a {
    border: 2px solid ButtonText;
  }
}
