/* ===== Chef Lucas — Design system (Warm & Rustic) ===== */
:root {
  --terra: #C4573A;
  --terra-dark: #A3432B;
  --terra-soft: #F0D4CC;
  --olive: #5B7553;
  --olive-dark: #3E5338;
  --olive-soft: #D6E4D0;
  --cream: #FDF5E8;
  --cream-100: #FAF0DC;
  --cream-200: #F0E2C4;
  --warm: #E8D5B5;
  --ink: #2C2418;
  --ink-soft: #5A4D3C;
  --gold: #C08A3A;
  --white: #FFFCF7;
  --shadow: 0 18px 40px -16px rgba(44, 36, 24, 0.18);
  --shadow-sm: 0 4px 14px -8px rgba(44, 36, 24, 0.12);
  --radius: 16px;
  --radius-lg: 28px;
  --radius-sm: 10px;
  --container: 1180px;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--terra); text-decoration: none; }
a:hover { color: var(--terra-dark); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }

/* Typography */
h1, h2, h3 { font-family: var(--serif); font-weight: 700; color: var(--ink); margin: 0 0 .5em; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); letter-spacing: -.01em; }
h1 em { font-style: italic; color: var(--terra); }
h1 .h1-sub { display: block; font-size: .55em; font-family: var(--sans); font-weight: 500; color: var(--ink-soft); margin-top: .5em; line-height: 1.3; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.3rem; font-family: var(--sans); font-weight: 600; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: 1em;
}

/* Sections */
.section { padding: clamp(60px, 8vw, 110px) 0; }
.section__head { text-align: center; margin-bottom: 56px; }
.section__head h2 { max-width: 720px; margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--terra);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .15s, background .15s, box-shadow .15s;
  box-shadow: 0 6px 20px -8px rgba(196, 87, 58, .45);
  text-align: center;
}
.btn:hover { background: var(--terra-dark); color: var(--white); transform: translateY(-1px); }
.btn--xl { padding: 18px 36px; font-size: 1.08rem; }
.btn--small { padding: 10px 20px; font-size: .92rem; }
.btn--full { width: 100%; }
.btn--ghost { background: transparent; color: var(--terra); border: 2px solid var(--terra); box-shadow: none; padding: 13px 28px; font-weight: 500; }
.btn--ghost:hover { background: var(--terra-soft); color: var(--terra-dark); transform: none; box-shadow: none; }
.btn--olive { background: var(--olive); box-shadow: 0 6px 20px -8px rgba(91, 117, 83, .45); }
.btn--olive:hover { background: var(--olive-dark); }
.btn--upsell {
  background: var(--ink);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}
.btn--upsell:hover { background: #444; }
.btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* Topbar */
.topbar {
  background: var(--ink);
  color: var(--white);
  text-align: center;
  font-size: .9rem;
  padding: 9px 16px;
}
.topbar strong { color: var(--gold); }

/* Nav */
.nav { background: var(--white); border-bottom: 1px solid var(--cream-200); position: sticky; top: 0; z-index: 50; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.brand { display: flex; align-items: baseline; gap: 6px; color: var(--ink); }
.brand__name { font-family: var(--serif); font-size: 1.7rem; font-weight: 700; letter-spacing: -.01em; }
.brand__tag { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--terra); }

/* Hero */
.hero { padding: 56px 0 80px; background: var(--cream); }
.hero__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.hero__bridge {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink-soft);
  margin: 0 0 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cream-200);
  line-height: 1.55;
}
.hero__bridge strong { color: var(--terra); font-style: normal; font-weight: 700; }
.hero__bullets { list-style: none; padding: 0; margin: 0 0 2em; }
.hero__bullets li { padding: 6px 0; color: var(--ink-soft); }
.hero__trust { margin-top: 18px; font-size: .92rem; color: var(--ink-soft); }
.hero__media { position: relative; }
.hero__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.hero__badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--terra);
  color: var(--white);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  text-align: center;
}
.hero__badge span { font-family: var(--serif); font-weight: 800; font-size: 1.1rem; }
.hero__badge small { font-size: .65rem; opacity: .8; }

/* Trust strip */
.trust { background: var(--olive-soft); padding: 36px 0; }
.trust__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trust__inner strong { display: block; font-family: var(--serif); font-size: 2rem; color: var(--olive-dark); }
.trust__inner span { font-size: .9rem; color: var(--ink-soft); }

/* What's inside */
.inside__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.inside__card {
  position: relative;
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  overflow: hidden;
  min-height: 260px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
}
.inside__card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.inside__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 16, 10, .78) 0%, rgba(20, 16, 10, .35) 50%, rgba(20, 16, 10, .12) 100%);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  z-index: 1;
  transition: background .3s;
}
.inside__card:hover .inside__overlay {
  background: linear-gradient(0deg, rgba(20, 16, 10, .82) 0%, rgba(20, 16, 10, .4) 55%, rgba(20, 16, 10, .15) 100%);
}
.inside__content {
  position: relative;
  z-index: 2;
  padding: 28px 22px;
  width: 100%;
}
.inside__content h3 { color: #fff; font-size: 1.15rem; margin-bottom: .4em; text-shadow: 0 1px 6px rgba(0,0,0,.25); }
.inside__content p { color: rgba(255,255,255,.85); font-size: .9rem; text-shadow: 0 1px 4px rgba(0,0,0,.2); }
.inside__count { display: inline-block; background: rgba(255,255,255,.18); color: #fff; font-weight: 600; font-size: .82rem; padding: 4px 14px; border-radius: 999px; margin-top: 8px; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.15); }
.inline-stars { display: inline-block; vertical-align: middle; }
.guarantee-icon { display: inline-block; vertical-align: middle; margin-right: 4px; }

/* Author */
.author { background: var(--cream-100); }
.author__grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: center; }
.author__photo img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.author__copy p { color: var(--ink-soft); font-size: 1.04rem; }
.author__signature { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--terra); margin-top: 1.5em; }

/* Testimonials */
.testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.testi__head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.testi__head img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.testi__head strong { display: block; }
.testi__head span { font-size: .82rem; color: var(--ink-soft); }
.testi p { color: var(--ink-soft); font-style: italic; }
.stars { color: #E8B84A; font-size: .95rem; }

/* Value stack */
.value-stack { background: var(--cream-100); }
.stack__list { max-width: 680px; margin: 0 auto; }
.stack__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--cream-200);
  flex-wrap: wrap;
}
.stack__check {
  font-size: 1.2rem;
  color: var(--olive);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--olive-soft);
  border-radius: 50%;
  font-weight: 700;
  line-height: 1;
  margin-top: 2px;
}
.stack__item div { flex: 1; min-width: 0; }
.stack__item strong { display: block; font-size: .95rem; line-height: 1.3; }
.stack__item small { color: var(--ink-soft); font-size: .88rem; display: block; margin-top: 2px; }
.stack__val { font-size: .85rem; color: var(--ink-soft); font-weight: 600; flex-shrink: 0; white-space: nowrap; }
.stack__total { text-align: center; padding: 32px 0 0; }
.stack__total p { margin: .3em 0; color: var(--ink-soft); }
.stack__price { font-family: var(--serif); font-size: 1.2rem; }
.stack__price strong { font-size: 3rem; color: var(--terra); display: inline-block; vertical-align: middle; margin-left: 12px; }

/* ===== PRODUCT + CART ===== */
.product { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-100) 100%); }
.product__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product__main { position: sticky; top: 100px; }
.product__hero-img { position: relative; margin-bottom: 24px; }
.product__hero-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.product__free-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--terra);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 999px;
  letter-spacing: .05em;
}
.product__price { margin: 8px 0 16px; font-size: 1.2rem; }
.product__old-price { color: var(--ink-soft); font-size: 1rem; }
.product__current-price { color: var(--terra); font-size: 1.8rem; font-family: var(--serif); }
.product__desc { color: var(--ink-soft); margin-bottom: 24px; }
.product__guarantees { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 16px; font-size: .85rem; color: var(--ink-soft); }

/* Cart panel */
.cart {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  border: 2px solid var(--cream-200);
}
.cart__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cream-200);
}
.cart__header h3 { margin: 0; font-family: var(--sans); font-size: 1.1rem; }
.cart__timer {
  font-size: .85rem;
  color: var(--terra);
  background: var(--terra-soft);
  padding: 6px 14px;
  border-radius: 999px;
}

/* Cart items */
.cart__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-200);
  font-size: .92rem;
}
.cart__item--main { font-weight: 600; }
.cart__item--upsell { background: var(--cream); margin: 0 -12px; padding: 12px; border-radius: var(--radius-sm); }
.cart__item-info { flex: 1; }
.cart__item-info strong { display: block; font-size: .9rem; }
.cart__item-info small { color: var(--ink-soft); font-size: .8rem; }
.cart__item-price { font-weight: 600; flex-shrink: 0; white-space: nowrap; }
.cart__item-price--free { color: var(--olive); }
.cart__item-remove {
  background: none;
  border: none;
  color: var(--ink-soft);
  font-size: .8rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  flex-shrink: 0;
  transition: color .15s, background .15s;
}
.cart__item-remove:hover { color: var(--terra); background: var(--terra-soft); }

/* Cart summary */
.cart__summary { padding: 16px 0; margin-top: 8px; }
.cart__line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: .92rem;
  color: var(--ink-soft);
}
.cart__line--fee { color: var(--ink); }
.cart__line--total {
  font-size: 1.1rem;
  color: var(--ink);
  border-top: 2px solid var(--ink);
  padding-top: 12px;
  margin-top: 8px;
}

/* Checkout step */
.cart__checkout { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--cream-200); }
.cart__checkout h4 { font-family: var(--serif); margin: 0 0 16px; font-size: 1.1rem; }
.cart__checkout input {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--cream-200);
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 1rem;
  margin-bottom: 12px;
  transition: border-color .15s;
  background: var(--cream);
}
.cart__checkout input:focus { outline: none; border-color: var(--terra); background: var(--white); }
.cart__secure { font-size: .82rem; color: var(--ink-soft); text-align: center; margin-top: 12px; }

/* Checkout upsells */
.cart__upsells { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--cream-200); }
.cart__upsells h4 { font-family: var(--serif); margin: 0 0 16px; font-size: 1.1rem; }
.upsell-premium, .upsell-mystery {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 12px;
  border: 1px solid var(--cream-200);
}
.upsell__info { display: flex; align-items: center; gap: 14px; flex: 1; }
.upsell__info img { width: 64px; height: 64px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.upsell__info strong { display: block; font-size: .92rem; }
.upsell__info small { display: block; color: var(--ink-soft); font-size: .8rem; margin: 2px 0; }
.upsell__price { font-size: .88rem; }
.upsell__price s { color: var(--ink-soft); font-size: .8rem; }
.upsell__price strong { color: var(--terra); }

/* Processing policy */
.processing-policy { background: var(--cream); }
.processing-policy h2 { font-size: 1.4rem; margin-bottom: 24px; }
.processing-policy h3 { font-size: 1.1rem; margin-top: 24px; color: var(--ink); }
.processing-policy p, .processing-policy li { color: var(--ink-soft); font-size: .95rem; }
.processing-policy ol { padding-left: 20px; }
.processing-policy li { margin: 8px 0; }

/* FAQ */
.faq__list details {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.faq__list summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--terra);
  transition: transform .2s;
}
.faq__list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__list p { color: var(--ink-soft); margin: 14px 0 0; }

/* CTA Final */
.cta-final { background: var(--terra); color: var(--white); text-align: center; }
.cta-final h2 { color: var(--white); }
.cta-final p { color: var(--terra-soft); font-size: 1.1rem; margin-bottom: 28px; }
.cta-final .btn { background: var(--white); color: var(--terra); }
.cta-final .btn:hover { background: var(--cream); color: var(--terra-dark); }
.cta-final__sub { margin-top: 18px; font-size: .9rem; color: var(--terra-soft); }

/* Footer */
.footer { background: var(--ink); color: var(--cream-200); padding: 48px 0 80px; }
.footer__inner { text-align: center; }
.footer nav { display: flex; gap: 24px; justify-content: center; margin: 16px 0; flex-wrap: wrap; }
.footer nav a { color: var(--cream-200); font-size: .9rem; }
.footer nav a:hover { color: var(--white); }
.footer__disclaimer { font-size: .78rem; color: #8c7d62; max-width: 720px; margin: 16px auto 0; }

/* Sticky bottom CTA bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 252, 247, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--cream-200);
  box-shadow: 0 -4px 24px -8px rgba(44, 36, 24, .15);
  padding: 12px 20px;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
.sticky-bar--visible { transform: translateY(0); }
.sticky-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-bar__text { flex: 1; min-width: 0; }
.sticky-bar__text strong { display: block; font-size: .92rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-bar__text span { font-size: .78rem; color: var(--ink-soft); }
.sticky-bar .btn { flex-shrink: 0; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero__grid, .author__grid, .product__grid { grid-template-columns: 1fr; gap: 40px; }
  .product__main { position: static; }
  .inside__grid, .testi__grid { grid-template-columns: 1fr; }
  .trust__inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero { padding: 40px 0 52px; }
  .section__head { margin-bottom: 36px; }
  .hero__badge { width: 80px; height: 80px; bottom: -10px; left: -10px; }
  .hero__badge span { font-size: .95rem; }
  .hero__badge small { font-size: .6rem; }
  .upsell-premium, .upsell-mystery { flex-direction: column; text-align: center; }
  .upsell__info { flex-direction: column; }
}

@media (max-width: 540px) {
  .topbar { font-size: .75rem; padding: 6px 10px; }
  .nav__inner { padding: 8px 14px; }
  .brand__name { font-size: 1.2rem; }
  .brand__tag { font-size: .65rem; letter-spacing: .12em; }
  .nav .btn--small { font-size: .75rem; padding: 7px 12px; }
  .hero { padding: 26px 0 36px; }
  .hero__grid { gap: 28px; }
  h1 { font-size: 1.95rem; line-height: 1.12; }
  h1 .h1-sub { font-size: 1.02rem; line-height: 1.4; margin-top: .7em; }
  .hero__bullets { margin: 0 0 1.4em; }
  .hero__bullets li { padding: 4px 0; font-size: .98rem; }
  .hero__trust { font-size: .84rem; line-height: 1.5; margin-top: 14px; }
  .hero__bridge { font-size: .95rem; margin-bottom: 20px; padding-bottom: 14px; line-height: 1.45; }
  .stack__item { gap: 10px; }
  .stack__val { width: 100%; text-align: right; padding-left: 42px; margin-top: -4px; }
  .cart { padding: 20px 16px; }
  .cart__item { font-size: .85rem; }
  .product__guarantees { flex-direction: column; gap: 8px; }
  .sticky-bar { padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px)); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
