@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Playfair+Display:wght@700;800&display=swap");

:root {
  --forest: #0e6b57;
  --sage: #dff4ec;
  --cream: #f7f1e8;
  --gold: #c8a96a;
  --ink: #303030;
  --white: #fff;
  --line: rgba(14, 107, 87, 0.12);
  --shadow: 0 24px 70px rgba(14, 107, 87, 0.16);
}

* { box-sizing: border-box; }
body { margin: 0; overflow-x: hidden; background: var(--cream); color: var(--ink); font-family: Inter, Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.topbar {
  position: sticky; top: 0; z-index: 20; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px clamp(16px, 4vw, 44px); border-bottom: 1px solid var(--line);
  background: rgba(247, 241, 232, .94); backdrop-filter: blur(16px);
  max-width: 100vw;
  overflow: hidden;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: 44px; border-radius: 16px; }
.brand strong { display: block; font-family: "Playfair Display", serif; font-size: 22px; color: var(--forest); line-height: 1; }
.brand small { color: var(--gold); font-size: 11px; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: 8px; }
nav a { padding: 10px 13px; border-radius: 999px; font-weight: 800; font-size: 14px; color: rgba(48,48,48,.72); }
nav a.active, nav a:hover { background: var(--sage); color: var(--forest); }
.nav-cta { background: var(--forest); color: white !important; }
.menu { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 16px; background: white; color: var(--forest); font-size: 22px; }

.section { max-width: 1220px; margin: 0 auto; padding: 56px clamp(16px, 4vw, 44px); }
.eyebrow { margin: 0; color: var(--gold); font-weight: 900; letter-spacing: .22em; text-transform: uppercase; font-size: 12px; }
h1, h2, h3 { font-family: "Playfair Display", serif; color: var(--forest); margin: 0; line-height: 1.05; }
h1 { font-size: clamp(46px, 8vw, 84px); }
h2 { font-size: clamp(34px, 5vw, 56px); }
h3 { font-size: 28px; }
p { line-height: 1.72; }
.lead { font-size: 20px; color: rgba(48,48,48,.72); max-width: 760px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 13px 20px; border-radius: 999px; font-weight: 900; border: 1px solid transparent; cursor: pointer; }
.primary { background: var(--forest); color: white; }
.secondary { background: white; color: var(--forest); border-color: var(--line); }
.gold { background: var(--gold); color: var(--forest); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero { display: grid; grid-template-columns: .92fr 1.08fr; gap: 34px; align-items: center; }
.hero img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 36px; box-shadow: var(--shadow); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 30px; }
.stat, .card, .panel { background: white; border: 1px solid var(--line); border-radius: 28px; box-shadow: 0 8px 28px rgba(14,107,87,.06); }
.stat { padding: 17px; }
.stat strong { display: block; font-family: "Playfair Display", serif; font-size: 28px; color: var(--forest); }
.stat span { font-size: 11px; font-weight: 900; color: rgba(48,48,48,.48); text-transform: uppercase; letter-spacing: .14em; }

.grid { display: grid; gap: 22px; }
.features { grid-template-columns: repeat(5, 1fr); }
.recipes { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.categories { grid-template-columns: repeat(3, 1fr); }
.card { overflow: hidden; }
.card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card-body { padding: 22px; }
.tag { display: inline-flex; border-radius: 999px; padding: 7px 11px; background: var(--sage); color: var(--forest); font-size: 12px; font-weight: 900; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 16px 0; }
.feature { padding: 24px; background: white; border-radius: 28px; border: 1px solid var(--line); font-weight: 900; color: var(--forest); }
.category { position: relative; min-height: 220px; overflow: hidden; border-radius: 30px; color: white; background: var(--forest); }
.category img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .75; }
.category:after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,107,87,.96), rgba(14,107,87,.2), transparent); }
.category strong { position: absolute; left: 22px; right: 22px; bottom: 52px; z-index: 2; font-family: "Playfair Display", serif; font-size: 30px; }
.category span { position: absolute; left: 22px; bottom: 20px; z-index: 2; background: rgba(255,255,255,.92); color: var(--forest); border-radius: 999px; padding: 7px 11px; font-size: 12px; font-weight: 900; }

.toolbar { display: flex; gap: 14px; align-items: center; justify-content: space-between; background: white; border: 1px solid var(--line); border-radius: 28px; padding: 16px; margin-top: 30px; }
.toolbar input { width: min(420px, 100%); border: 1px solid var(--line); background: var(--cream); border-radius: 18px; padding: 14px 16px; font: inherit; outline: none; }
.filters { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 3px; }
.filters button { flex: 0 0 auto; border: 1px solid var(--line); background: white; color: rgba(48,48,48,.72); border-radius: 999px; padding: 10px 13px; font-weight: 900; cursor: pointer; }
.filters button.active { background: var(--forest); color: white; }

.detail { display: grid; grid-template-columns: .95fr 1.05fr; gap: 28px; align-items: stretch; }
.detail > img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; border-radius: 36px; box-shadow: var(--shadow); }
.panel { padding: clamp(22px, 4vw, 42px); }
.mini-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 24px; }
.mini { background: var(--cream); border-radius: 22px; padding: 14px; text-align: center; }
.mini strong { display: block; color: var(--forest); font-size: 14px; }
.mini span { color: rgba(48,48,48,.52); text-transform: uppercase; font-size: 10px; font-weight: 900; letter-spacing: .1em; }
.tip { margin-top: 22px; background: var(--sage); border-radius: 24px; padding: 18px; color: var(--forest); }
.guided { display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; margin-top: 28px; }
.check { display: flex; align-items: center; gap: 10px; width: 100%; padding: 13px; margin: 8px 0; border: 1px solid var(--line); border-radius: 18px; background: white; text-align: left; cursor: pointer; font-weight: 700; }
.check.done { background: var(--sage); color: var(--forest); }
.progress { height: 12px; background: var(--cream); border-radius: 999px; overflow: hidden; margin-top: 18px; }
.progress span { display: block; height: 100%; background: var(--forest); border-radius: inherit; transition: width .25s; }
.stepbox { background: var(--cream); border-radius: 28px; padding: 28px; }
.steptext { font-size: 25px; font-weight: 800; line-height: 1.45; }

.offer { display: grid; grid-template-columns: 1fr .85fr; gap: 28px; }
.dark { background: var(--forest); color: white; }
.dark h2, .dark h3 { color: white; }
.dark .muted { color: rgba(255,255,255,.72); }
.included { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 24px; }
.included span { background: var(--sage); color: var(--forest); border-radius: 18px; padding: 14px; font-weight: 900; }
.list-grid { grid-template-columns: repeat(3, 1fr); }
.plan-grid { grid-template-columns: repeat(2, 1fr); }
.item { background: var(--cream); border-radius: 18px; padding: 13px; margin-top: 9px; font-weight: 700; }

.footer { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 32px clamp(16px,4vw,44px); background: white; border-top: 1px solid var(--line); }
.footer strong { color: var(--forest); font-family: "Playfair Display", serif; font-size: 24px; }
.footer p { margin: 6px 0 0; color: rgba(48,48,48,.62); font-size: 14px; }

@media (max-width: 980px) {
  .hero, .detail, .guided, .offer { grid-template-columns: 1fr; }
  .features, .categories, .recipes, .list-grid, .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .toolbar { align-items: stretch; flex-direction: column; }
  .toolbar input { width: 100%; }
}

@media (max-width: 720px) {
  .menu { display: block; }
  nav { display: none; position: absolute; top: 73px; left: 12px; right: 12px; padding: 12px; border-radius: 24px; background: white; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  nav.open { display: flex; }
  nav a { padding: 14px 16px; }
  .features, .categories, .recipes, .list-grid, .plan-grid, .included { grid-template-columns: 1fr; }
  .stats, .mini-grid { grid-template-columns: 1fr; }
  .section { padding-top: 34px; padding-bottom: 34px; }
  .section { max-width: 100vw; overflow-x: hidden; }
  h1 { font-size: clamp(34px, 10vw, 40px); overflow-wrap: anywhere; word-break: normal; }
  h2 { font-size: clamp(32px, 10vw, 42px); }
  .lead { font-size: 18px; }
  .actions { align-items: stretch; flex-direction: column; }
  .actions .btn { width: 100%; }
  .topbar { gap: 8px; }
  .brand strong { font-size: 20px; }
  .brand small { font-size: 10px; }
  .hero { max-width: 100%; overflow: hidden; }
  .hero img, .detail > img { min-height: auto; }
  .footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 390px) {
  .brand strong { font-size: 18px; }
  .brand img { width: 40px; height: 40px; }
}
