:root {
  --primary: #b35400;
  --primary-dark: #8b4200;
  --secondary: #4a3728;
  --text: #3a3a3a;
  --muted: #e8d5c4;
  --soft: #fdf5ef;
  --white: #fff;
  --radius: 12px;
  --shadow: 0 18px 45px rgba(74, 55, 40, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: #fff; font-family: Inter, Arial, sans-serif; line-height: 1.55; }
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3 { margin: 0; color: var(--secondary); font-family: "Playfair Display", Georgia, serif; line-height: 1.1; }
p { margin: 0; }
.container { width: min(100% - 32px, 1280px); margin-inline: auto; }

.offer-bar { padding: 8px 16px; text-align: center; color: #fff; background: var(--primary); font-size: 14px; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--muted); box-shadow: 0 2px 8px rgba(74,55,40,.08); }
.header-inner { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 8px; color: var(--primary); font-family: "Playfair Display", Georgia, serif; font-size: 25px; font-weight: 700; white-space: nowrap; }
nav { display: flex; align-items: center; gap: 26px; }
nav > a:not(.button), .nav-link { padding: 8px 0; border: 0; color: var(--text); background: transparent; cursor: pointer; }
nav > a:not(.button):hover, .nav-link:hover { color: var(--primary); }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 13px 30px; border: 2px solid var(--primary); border-radius: var(--radius); color: #fff; background: var(--primary); box-shadow: 0 8px 18px rgba(179,84,0,.18); font-weight: 700; font-size: 17px; text-align: center; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); background: var(--primary-dark); border-color: var(--primary-dark); box-shadow: 0 12px 24px rgba(179,84,0,.24); }
.button:active { transform: translateY(0); }
.button:focus-visible, button:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid rgba(179,84,0,.35); outline-offset: 3px; }
.button-small { min-height: 40px; padding: 8px 18px; font-size: 14px; }
.button-outline { color: var(--primary); background: #fff; box-shadow: none; }
.button-outline:hover { color: #fff; }
.button-light-outline { border-color: #fff; color: #fff; background: transparent; box-shadow: none; }
.button-light-outline:hover { color: var(--secondary); background: #fff; }
.button-wide { width: 100%; }

.hero { background: linear-gradient(135deg, #fff 54%, rgba(253,245,239,.8)); }
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-grid { padding-block: 72px; }
.hero-copy { display: grid; gap: 26px; }
.hero h1 { max-width: 650px; font-size: clamp(45px, 5.2vw, 72px); letter-spacing: -.035em; }
.lead { max-width: 680px; font-size: 20px; color: rgba(58,58,58,.82); }
.feature-list { display: grid; gap: 16px; padding-block: 4px; }
.feature-list article { display: flex; gap: 16px; align-items: flex-start; }
.feature-list article > span { width: 23px; height: 23px; flex: 0 0 23px; margin-top: 3px; display: grid; place-items: center; border: 2px solid var(--primary); border-radius: 50%; color: var(--primary); font-size: 13px; font-weight: 800; }
.feature-list h3 { margin-bottom: 2px; font-size: 17px; }
.feature-list p { color: rgba(58,58,58,.7); font-size: 14px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; padding-top: 4px; }
.hero-media { height: 600px; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow); }

.stats { padding-block: 52px; color: #fff; background: var(--secondary); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stats-grid div { display: grid; gap: 4px; }
.stats-grid strong { font-size: 40px; line-height: 1; }
.stats-grid span { font-size: 14px; opacity: .9; }

.section { padding-block: 80px; }
.section-soft { background: rgba(253,245,239,.56); }
.section-gradient { background: linear-gradient(135deg, rgba(253,245,239,.85), #fff); }
.section-title { margin-bottom: 46px; text-align: center; font-size: clamp(34px, 4vw, 46px); }
.section-intro { max-width: 720px; margin: -30px auto 46px; text-align: center; color: rgba(58,58,58,.7); font-size: 17px; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.category-grid button { min-height: 210px; padding: 28px; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; border: 2px solid var(--muted); border-radius: 14px; background: rgba(253,245,239,.6); cursor: pointer; text-align: left; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.category-grid button:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: 0 14px 26px rgba(74,55,40,.12); }
.category-grid span { font-size: 50px; }
.category-grid strong { color: var(--secondary); font-family: "Playfair Display", Georgia, serif; font-size: 25px; }
.category-grid small { color: var(--primary); font-size: 16px; font-weight: 700; }

.example-grid > img { width: 100%; height: 480px; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow); }
.text-stack { display: grid; gap: 22px; }
.text-stack h3 { margin-bottom: 5px; font-size: 24px; }
.text-stack p { color: rgba(58,58,58,.7); }
.align-start { justify-self: start; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.benefit-grid article { padding: 34px; border: 2px solid var(--muted); border-radius: 14px; background: #fff; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.benefit-grid article:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: 0 14px 26px rgba(74,55,40,.1); }
.benefit-grid span { display: block; margin-bottom: 16px; font-size: 40px; }
.benefit-grid h3 { margin-bottom: 10px; font-size: 25px; }
.benefit-grid p { color: rgba(58,58,58,.7); }

.format-grid > img { border-radius: 18px; box-shadow: var(--shadow); }
.format-grid h2 { margin-bottom: 20px; font-size: clamp(34px, 4vw, 46px); }
.lead-small { margin-bottom: 24px; color: rgba(58,58,58,.7); font-size: 18px; }
.check-list { margin: 0 0 30px; padding: 0; display: grid; gap: 12px; list-style: none; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before { position: absolute; left: 0; content: "✓"; color: var(--primary); font-weight: 800; }

.faq-wrap { max-width: 850px; }
.faq-list { display: grid; gap: 12px; }
details { border: 2px solid var(--muted); border-radius: 12px; background: #fff; overflow: hidden; }
summary { position: relative; padding: 20px 56px 20px 22px; color: var(--secondary); font-weight: 700; cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { position: absolute; right: 22px; content: "+"; color: var(--primary); font-size: 25px; line-height: 1; }
details[open] summary::after { content: "−"; }
details p { padding: 0 22px 20px; color: rgba(58,58,58,.72); border-top: 1px solid var(--muted); padding-top: 16px; }
.center-action { margin-top: 44px; display: grid; justify-items: center; gap: 16px; text-align: center; }
.center-action p { color: rgba(58,58,58,.65); }

.final-cta { padding-block: 76px; color: #fff; background: var(--secondary); }
.final-inner { max-width: 800px; display: grid; justify-items: center; gap: 24px; text-align: center; }
.final-cta h2 { color: #fff; font-size: clamp(36px, 5vw, 50px); }
.final-cta p { color: rgba(255,255,255,.8); font-size: 18px; }
.countdown { display: flex; gap: 14px; }
.countdown div { display: grid; gap: 5px; text-align: center; }
.countdown strong { min-width: 70px; padding: 10px 12px; border-radius: 12px; background: rgba(255,255,255,.18); font-size: 31px; }
.countdown span { font-size: 12px; color: rgba(255,255,255,.7); }
.final-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
footer { padding: 28px 16px; color: rgba(255,255,255,.65); background: #3f2e22; text-align: center; font-size: 14px; }

dialog { width: min(680px, calc(100% - 28px)); max-height: 90vh; padding: 0; border: 0; border-radius: 16px; box-shadow: 0 24px 70px rgba(0,0,0,.35); overflow: auto; }
dialog::backdrop { background: rgba(0,0,0,.68); }
.modal-head { position: sticky; top: 0; z-index: 2; padding: 20px 24px; display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; border-bottom: 1px solid var(--muted); background: #fff; }
.modal-head h2 { margin-bottom: 3px; font-size: 21px; }
.modal-head p { color: rgba(58,58,58,.6); font-size: 14px; }
.modal-close { width: 38px; height: 38px; border: 0; border-radius: 50%; color: var(--secondary); background: var(--soft); font-size: 28px; line-height: 1; cursor: pointer; }
.recipe-tabs { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--muted); }
.recipe-tabs button { padding: 14px 8px; border: 0; border-bottom: 3px solid transparent; background: #fff; cursor: pointer; }
.recipe-tabs button[aria-selected="true"] { color: var(--primary); border-color: var(--primary); background: rgba(253,245,239,.6); font-weight: 700; }
.sample-content { padding: 24px; }
.recipe-meta { margin-bottom: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.recipe-meta span { padding: 6px 10px; border-radius: 999px; color: var(--primary); background: rgba(179,84,0,.1); font-size: 13px; font-weight: 700; }
.sample-content h3 { margin: 22px 0 10px; font-size: 20px; }
.sample-content ul, .sample-content ol { margin: 0; padding-left: 22px; display: grid; gap: 8px; }
.chef-tip { margin-top: 22px; padding: 16px; border-left: 4px solid #d99a06; border-radius: 0 8px 8px 0; color: #805600; background: #fff8dc; font-size: 14px; }
.modal-buy { position: sticky; bottom: 0; padding: 18px 24px 24px; border-top: 1px solid var(--muted); background: #fff; text-align: center; }
.modal-buy p { margin-bottom: 12px; font-size: 14px; }

@media (max-width: 900px) {
  nav > a:not(.button), .nav-link { display: none; }
  .two-column { grid-template-columns: 1fr; gap: 42px; }
  .hero-grid { padding-block: 54px; }
  .hero-media { height: 520px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid, .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .format-grid > img { max-height: 580px; width: 100%; object-fit: cover; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1280px); }
  .offer-bar { font-size: 12px; }
  .offer-bar span { display: none; }
  .site-header { top: 0; }
  .header-inner { min-height: 60px; }
  .brand { font-size: 20px; }
  .brand span { display: none; }
  .button-small { min-height: 38px; padding-inline: 14px; }
  .hero h1 { font-size: clamp(41px, 13vw, 56px); }
  .lead { font-size: 18px; }
  .hero-actions, .final-actions { flex-direction: column; }
  .hero-actions .button, .final-actions .button { width: 100%; }
  .hero-media { height: 420px; }
  .section { padding-block: 58px; }
  .section-title { margin-bottom: 36px; }
  .category-grid, .benefit-grid { grid-template-columns: 1fr; }
  .category-grid button { min-height: 170px; }
  .example-grid > img { height: 360px; }
  .stats-grid { gap: 32px 14px; }
  .stats-grid strong { font-size: 34px; }
  .center-action .button { width: 100%; }
  .recipe-tabs button { font-size: 12px; }
  .modal-head { padding: 17px; }
  .sample-content, .modal-buy { padding-inline: 17px; }
}

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