/* CUISINE LANDING · self-contained · tokens only */
.cz-hero { padding-block: clamp(28px, 4vw, 52px) clamp(20px, 3vw, 36px); background: var(--cream); }
.cz-inner { max-width: 1180px; margin: 0 auto; padding-inline: var(--gutter); }
.cz-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; color: var(--olive-dark); padding: 6px 14px; background: var(--olive-tint); border-radius: 999px; margin-block-end: 16px; }
.cz-hero h1 { font-size: clamp(30px, 4.4vw, 50px); font-weight: 600; line-height: 1.14; letter-spacing: -0.02em; margin-block-end: 16px; }
.cz-lede { font-size: clamp(15.5px, 1.5vw, 18px); line-height: 1.85; color: var(--text-soft); max-width: 60ch; }
.cz-lede + .cz-lede { margin-block-start: 14px; }
.cz-stats { display: flex; gap: 28px; flex-wrap: wrap; margin-block-start: 24px; padding-block-start: 20px; border-block-start: 1px solid var(--border); }
/* media hero (goal pages) · scoped to .has-media so cuisine pages are unaffected */
.cz-hero.has-media .cz-inner { display: grid; grid-template-columns: 1fr; gap: clamp(22px, 4vw, 48px); align-items: center; }
.cz-hero.has-media .cz-copy .cz-lede { max-width: 52ch; }
.cz-hero-media { margin: 0; border-radius: 18px; overflow: hidden; aspect-ratio: 4 / 3; border: 1px solid var(--border); box-shadow: 0 12px 34px rgba(28, 28, 30, 0.09); background: var(--bg-soft); }
.cz-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (min-width: 880px) { .cz-hero.has-media .cz-inner { grid-template-columns: 1.04fr 0.96fr; } .cz-hero.has-media .cz-copy { order: 1; } .cz-hero-media { order: 2; } }
.cz-stat .n { font-size: 24px; font-weight: 700; color: var(--text); font-feature-settings: "tnum"; line-height: 1; }
.cz-stat .l { font-size: 12px; color: var(--text-soft); margin-block-start: 5px; }
.cz-section { padding-block: clamp(26px, 3.5vw, 44px); }
.cz-section-head { max-width: 1180px; margin: 0 auto clamp(16px, 2vw, 22px); padding-inline: var(--gutter); }
.cz-section-head .eye { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; color: var(--olive-dark); text-transform: uppercase; margin-block-end: 6px; }
.cz-section-head h2 { font-size: clamp(21px, 2.4vw, 27px); font-weight: 600; letter-spacing: -0.01em; }
.cz-section-head .sub { font-size: 13.5px; color: var(--text-soft); margin-block-start: 5px; }
/* recipe grid — mirrors recipes.html cards */
.cz-grid { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 1180px; margin: 0 auto; padding-inline: var(--gutter); }
@media (min-width: 600px) { .cz-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 920px) { .cz-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .cz-grid { grid-template-columns: repeat(4, 1fr); } }
.cz-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: var(--text); transition: transform 220ms var(--ease-out-quart), box-shadow 220ms var(--ease-out-quart), border-color 220ms var(--ease-out-quart); }
.cz-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(60,52,38,0.10); border-color: var(--olive); }
.cz-card-img { aspect-ratio: 4/3; position: relative; overflow: hidden; background: var(--cream); }
.cz-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cz-card-gi { position: absolute; inset-block-end: 12px; inset-inline-end: 12px; background: rgba(255,255,255,0.95); padding: 5px 10px; border-radius: 8px; font-size: 11px; font-weight: 600; font-feature-settings: "tnum"; display: inline-flex; align-items: baseline; gap: 4px; }
.cz-card-gi-num { font-size: 14px; font-weight: 700; }
.cz-card-gi.low { color: var(--olive-darker); }
.cz-card-gi.medium { color: #8A6018; }
.cz-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.cz-card-meal { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; color: var(--olive-dark); }
.cz-card-body h3 { font-size: 16px; font-weight: 600; line-height: 1.4; }
.cz-card-meta { display: flex; gap: 6px; flex-wrap: wrap; margin-block-start: auto; padding-block-start: 10px; }
.cz-card-meta span { background: var(--bg-soft); padding: 5px 11px; border-radius: 999px; font-size: 11.5px; color: var(--text-soft); font-feature-settings: "tnum"; }
.cz-card-meta strong { color: var(--text); font-weight: 700; }
/* signature spices */
.cz-spices { display: flex; gap: 10px; flex-wrap: wrap; max-width: 1180px; margin: 0 auto; padding-inline: var(--gutter); }
.cz-spice { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 8px; background: var(--white); border: 1px solid var(--border); border-radius: 999px; text-decoration: none; color: var(--text); font-size: 14px; font-weight: 500; transition: border-color 160ms var(--ease-out-quart); }
.cz-spice:hover { border-color: var(--olive); color: var(--olive-darker); }
.cz-spice .orb { width: 34px; height: 34px; border-radius: 50%; overflow: hidden; background: var(--cream); flex: none; }
.cz-spice .orb img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* CTA */
.cz-cta { background: var(--olive-dark); color: var(--white); padding-block: clamp(36px, 5vw, 60px); margin-block-start: clamp(20px, 3vw, 36px); }
.cz-cta-inner { max-width: 720px; margin: 0 auto; padding-inline: var(--gutter); text-align: center; }
.cz-cta h2 { font-size: clamp(22px, 2.8vw, 32px); font-weight: 600; line-height: 1.2; letter-spacing: -0.02em; margin-block-end: 12px; }
.cz-cta p { font-size: 15.5px; line-height: 1.75; opacity: 0.86; margin-block-end: 22px; }
.cz-cta a { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: var(--white); color: var(--olive-dark); border-radius: 10px; font-weight: 600; font-size: 15px; text-decoration: none; }

/* ═══ APP CONVERSION (goal pages · scoped) ═══ */
.cz-appcta { background: var(--olive-dark); color: var(--white); padding-block: clamp(40px, 6vw, 70px); margin-block-start: clamp(28px, 4vw, 48px); }
.cz-appcta-inner { max-width: 800px; margin: 0 auto; padding-inline: var(--gutter); text-align: center; }
.cz-appcta h2 { font-size: clamp(24px, 3.2vw, 35px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; color: var(--white); margin-block-end: 14px; }
.cz-appcta p { font-size: clamp(15px, 1.6vw, 18px); line-height: 1.85; color: rgba(255,255,255,0.9); max-width: 60ch; margin: 0 auto 26px; }
.cz-appcta-primary { display: inline-flex; align-items: center; gap: 8px; padding: 15px 34px; background: var(--white); color: var(--olive-dark); border-radius: 999px; font-weight: 700; font-size: 16px; text-decoration: none; transition: transform 160ms var(--ease-out-quart), box-shadow 160ms var(--ease-out-quart); }
.cz-appcta-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.22); }
.cz-appcta-primary svg { width: 18px; height: 18px; }
.cz-appcta-badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-block-start: 24px; }
.cz-appcta-badge { display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.28); border-radius: 12px; text-decoration: none; color: var(--white); transition: background 160ms var(--ease-out-quart); }
.cz-appcta-badge:hover { background: rgba(255,255,255,0.18); }
.cz-appcta-badge svg { width: 26px; height: 26px; flex: none; }
.cz-appcta-badge .t { display: flex; flex-direction: column; line-height: 1.15; text-align: start; }
.cz-appcta-badge .t small { font-size: 11px; opacity: 0.82; }
.cz-appcta-badge .t strong { font-size: 15px; font-weight: 600; }
.cz-appcta-alt { display: inline-block; margin-block-start: 24px; color: rgba(255,255,255,0.78); font-size: 13.5px; text-decoration: underline; }
.cz-appcta-alt:hover { color: var(--white); }
/* sticky conversion bar */
.cz-sticky { position: fixed; inset-inline: 0; bottom: 0; z-index: 60; background: var(--white); border-block-start: 1px solid var(--border); box-shadow: 0 -6px 24px rgba(28,28,30,0.10); padding: 10px clamp(14px, 4vw, 28px); display: flex; align-items: center; justify-content: center; gap: 16px; transform: translateY(115%); transition: transform 240ms var(--ease-out-quart); }
.cz-sticky.show { transform: translateY(0); }
.cz-sticky p { font-size: 14px; font-weight: 600; color: var(--text); margin: 0; }
.cz-sticky a { display: inline-flex; align-items: center; gap: 7px; padding: 11px 24px; background: var(--olive-dark); color: var(--white); border-radius: 999px; font-weight: 700; font-size: 14.5px; text-decoration: none; white-space: nowrap; flex: none; }
.cz-sticky a:hover { background: var(--olive-darker); }
.cz-sticky a svg { width: 17px; height: 17px; }
@media (max-width: 560px) { .cz-sticky p { display: none; } .cz-sticky a { width: 100%; justify-content: center; } }
