:root {
  --cream: #faf6ee;
  --cream-dark: #f2ead9;
  --ink: #2b2118;
  --ink-soft: #5c4f42;
  --accent: #E92228;
  --accent-dark: #C8191F;
  --green: #3A5EAB;
  --gold: #3A5EAB;
  --blue: #3A5EAB;
  --white: #fffdf8;
  --radius: 14px;
  --shadow: 0 12px 32px rgba(43, 33, 24, 0.12);
  --maxw: 1100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.brand-logo { height: 46px; width: auto; display: block; }

.brand span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover { color: var(--accent); }

.nav-links .btn { color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--ink);
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid var(--cream-dark);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; border-bottom: 1px solid var(--cream-dark); }
  .nav-links li:last-child a { border-bottom: 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.btn:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-1px); }

.btn-dark { background: var(--ink); }
.btn-dark:hover { background: #000; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}

.btn-ghost:hover { background: var(--ink); color: var(--white); }

/* ---------- Hero ---------- */
.hero {
  padding: 90px 0 70px;
  text-align: center;
  background:
    radial-gradient(ellipse at top, var(--cream-dark) 0%, transparent 60%);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 800px;
  margin: 0 auto 20px;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 34px;
}

.hero .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Flag accents ---------- */
.flagbar {
  height: 5px;
  background: linear-gradient(90deg, #E92228 0 33.33%, #ffffff 33.33% 66.66%, #3A5EAB 66.66% 100%);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-eyebrow .eyebrow { margin-bottom: 0; }

.hero-eyebrow img {
  height: 22px;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(43, 33, 24, 0.3);
}

.about-flag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.about-flag img {
  height: 44px;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.about-flag span {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ---------- Recipe preview ---------- */
#inside { border-top: 1px solid var(--cream-dark); }

.video-player {
  width: min(640px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow);
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.inside-divider {
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--cream-dark);
}

.inside-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.15;
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: left;
}

@media (max-width: 720px) {
  .recipe-grid { grid-template-columns: repeat(2, 1fr); }
}

.recipe-preview {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow);
}

.recipe-preview img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.recipe-preview figcaption { padding: 12px 14px 14px; }

.recipe-preview figcaption b {
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  display: block;
  line-height: 1.2;
}

.recipe-preview figcaption span {
  font-size: 0.7rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.recipe-more {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.recipe-more b {
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.2;
}

.recipe-more ul {
  list-style: none;
  display: grid;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(250, 246, 238, 0.85);
}

.recipe-more li::before { content: "\2713 "; color: #E92228; font-weight: 700; }

.media-credit {
  font-size: 0.72rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 14px auto 0;
}

.media-credit a { color: var(--ink-soft); text-decoration: underline; }
.media-credit a:hover { color: var(--accent); }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }

.section-alt { background: var(--white); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}

.section .sub { color: var(--ink-soft); max-width: 640px; margin-bottom: 40px; }

.center { text-align: center; }
.center .sub { margin-left: auto; margin-right: auto; }

/* ---------- Cards / Grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

.card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.card .price { font-family: "Fraunces", serif; font-size: 1.7rem; color: var(--accent); font-weight: 700; }

.card .price small { font-size: 0.95rem; color: var(--ink-soft); }

.card .desc { color: var(--ink-soft); font-size: 0.95rem; flex: 1; }

.card ul { margin: 6px 0 14px; padding-left: 18px; color: var(--ink-soft); font-size: 0.92rem; }

.card .btn { align-self: flex-start; }

.tag {
  display: inline-block;
  background: var(--cream-dark);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  width: fit-content;
}

.tag.gold { background: rgba(233, 34, 40, 0.12); color: var(--accent-dark); }
.tag.green { background: rgba(58, 94, 171, 0.14); color: var(--green); }
.tag.soon { background: rgba(58, 94, 171, 0.12); color: var(--blue-dark); }

.btn-coming {
  background: var(--cream-dark);
  color: var(--ink-soft);
  border: 2px dashed var(--ink-soft);
  cursor: default;
}

.btn-coming:hover { background: var(--cream-dark); color: var(--ink-soft); transform: none; }

/* ---------- Lead magnet ---------- */
.lead-magnet {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 54px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.lead-magnet h2 { color: var(--white); margin-bottom: 12px; }
.lead-magnet p { color: rgba(250, 246, 238, 0.85); margin-bottom: 22px; }

.lead-magnet ul { margin-left: 18px; margin-bottom: 22px; color: rgba(250, 246, 238, 0.9); }

.magnet-form { display: flex; gap: 10px; flex-wrap: wrap; }

.magnet-form input {
  flex: 1;
  min-width: 220px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.95rem;
}

.magnet-form input::placeholder { color: rgba(250,246,238,0.55); }

.magnet-form input:focus { outline: none; border-color: var(--accent); }

.form-note { font-size: 0.78rem; color: rgba(250,246,238,0.5); width: 100%; }

.form-msg { font-size: 0.92rem; color: var(--gold); margin-top: 10px; }

@media (max-width: 860px) {
  .lead-magnet { grid-template-columns: 1fr; padding: 40px 28px; }
}

/* ---------- Testimonials ---------- */
.quote {
  background: var(--white);
  border-left: 4px solid var(--accent);
  padding: 22px 26px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote p { font-family: "Fraunces", serif; font-style: italic; font-size: 1.05rem; }
.quote cite { display: block; margin-top: 10px; color: var(--ink-soft); font-style: normal; font-size: 0.9rem; }

/* ---------- FAQ ---------- */
.faq details {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
}

.faq details p { margin-top: 10px; color: var(--ink-soft); }

/* ---------- About ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
}

.about-split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--cream-dark);
}

@media (max-width: 860px) { .about-split { grid-template-columns: 1fr; } }

.stats { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 40px; }

.stat .num { font-family: "Fraunces", serif; font-size: 2.2rem; font-weight: 700; color: var(--accent); }
.stat .lbl { color: var(--ink-soft); font-size: 0.9rem; }

/* ---------- Product page ---------- */
.product-hero { padding: 64px 0 40px; }

.product-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow);
}

.product-visual {
  background:
    linear-gradient(135deg, var(--cream-dark), var(--cream));
  min-height: 320px;
  display: grid;
  place-items: center;
  font-family: "Fraunces", serif;
  font-size: 2.4rem;
  color: var(--accent-dark);
  text-align: center;
  padding: 24px;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.product-visual { position: relative; }

.product-info { padding: 40px; display: flex; flex-direction: column; gap: 14px; }

.product-info h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); }

.product-info .desc { color: var(--ink-soft); }

.product-info ul { margin-left: 18px; color: var(--ink-soft); }

.buy-row { display: flex; align-items: center; gap: 18px; margin-top: 8px; }

.buy-row .price { font-family: "Fraunces", serif; font-size: 2rem; font-weight: 700; color: var(--accent); }

@media (max-width: 860px) {
  .product-card { grid-template-columns: 1fr; }
  .product-visual { min-height: 200px; }
}

/* ---------- Packages / tiers ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }

.tier {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.tier.featured { border: 2px solid var(--accent); }

.tier .tag { position: absolute; top: -13px; left: 26px; }

.tier .cover { width: 130px; margin: 0 auto 6px; border-radius: 8px; box-shadow: var(--shadow); }

.tier .tiername { font-family: "Fraunces", serif; font-size: 1.3rem; margin-top: 6px; }

.tier .amount { font-family: "Fraunces", serif; font-size: 2.7rem; font-weight: 700; color: var(--accent); line-height: 1; }
.tier .amount small { font-size: 0.95rem; color: var(--ink-soft); font-weight: 400; }

.tier .save { font-size: 0.8rem; font-weight: 700; color: var(--accent-dark); }

.tier ul { margin: 6px 0 10px; padding-left: 18px; color: var(--ink-soft); font-size: 0.9rem; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.tier ul li b { color: var(--ink); }

.tier .btn { align-self: flex-start; }

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

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(250, 246, 238, 0.75);
  padding: 44px 0 34px;
  margin-top: 40px;
}

.site-footer .wrap { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

.site-footer .brand { color: var(--cream); }

.site-footer a { color: rgba(250, 246, 238, 0.75); }
.site-footer a:hover { color: var(--white); }

.site-footer ul { list-style: none; display: flex; gap: 22px; }

.site-footer small { display: block; margin-top: 20px; width: 100%; color: rgba(250,246,238,0.45); }
