:root {
  --ink: #12304b;
  --ink-soft: #47647c;
  --red: #e3132a;
  --red-deep: #bd0c22;
  --yellow: #ffd93f;
  --cream: #fffaf0;
  --cream-2: #fff4dd;
  --sky: #e8f6ff;
  --sky-strong: #bfe9ff;
  --green: #23a66f;
  --white: #ffffff;
  --line: rgba(18,48,75,.12);
  --shadow: 0 18px 45px rgba(30, 54, 79, .12);
  --shadow-soft: 0 9px 28px rgba(30, 54, 79, .09);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 13px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fffdf9;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 84px 0; }
.section-tight { padding: 60px 0; }
.section-kicker {
  margin: 0 0 9px;
  color: var(--red);
  font-size: .83rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.section-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.section-copy {
  max-width: 700px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}
.section-head { margin-bottom: 36px; }
.section-head.center { text-align: center; }
.section-head.center .section-copy { margin-left: auto; margin-right: auto; }
.muted { color: var(--ink-soft); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .1em;
  color: var(--red);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(18,48,75,.07);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
}
.header-row {
  min-height: 78px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 20px;
}
.brand { display: flex; align-items: center; width: 168px; }
.brand img { width: 100%; max-height: 58px; object-fit: contain; }
.nav { display: flex; justify-content: center; gap: 5px; }
.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #314c64;
  font-size: .93rem;
  font-weight: 750;
  transition: .2s ease;
}
.nav a:hover, .nav a.active { color: var(--red); background: #fff0f2; }
.header-actions { display: flex; align-items: center; gap: 11px; }
.lang-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.lang-switch button {
  border: 0;
  background: transparent;
  min-width: 38px;
  height: 34px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  font-size: .82rem;
}
.lang-switch button.active { background: var(--red); color: #fff; }
.cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 8px 20px rgba(227, 19, 42, .22);
}
.cta:hover, .button:hover { transform: translateY(-2px); background: var(--red-deep); }
.button.secondary { background: #fff; color: var(--red); border-color: rgba(227,19,42,.24); box-shadow: none; }
.button.secondary:hover { background: #fff4f5; }
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 25%, rgba(191,233,255,.65), transparent 35%),
    radial-gradient(circle at 80% 8%, rgba(255,217,63,.22), transparent 26%),
    linear-gradient(120deg, #f8fdff 0%, #fff9ee 62%, #fff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(227,19,42,.07);
  right: -110px; top: -110px;
}
.hero-grid {
  min-height: 660px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 54px;
  align-items: center;
}
.hero-copy { padding: 58px 0; position: relative; z-index: 1; }
.hero-title {
  margin: 13px 0 18px;
  max-width: 680px;
  font-size: clamp(3.35rem, 7vw, 6.3rem);
  line-height: .92;
  letter-spacing: -.07em;
}
.hero-title .accent { color: var(--red); }
.hero-text { margin: 0 0 28px; max-width: 590px; color: var(--ink-soft); font-size: 1.14rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-notes { display: flex; gap: 24px; margin-top: 28px; flex-wrap: wrap; }
.hero-note { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: .93rem; font-weight: 750; }
.icon-disc {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-soft);
  color: var(--red);
  font-size: 1.25rem;
}
.hero-visual { min-height: 560px; position: relative; align-self: stretch; }
.hero-photo-main {
  position: absolute;
  width: 72%;
  right: 2%; bottom: 5%;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(27,50,72,.2);
  transform: rotate(2deg);
  border: 8px solid rgba(255,255,255,.82);
}
.hero-photo-secondary {
  position: absolute;
  width: 51%;
  left: 2%; top: 13%;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transform: rotate(-5deg);
  border: 7px solid rgba(255,255,255,.9);
}
.hero-product-card {
  position: absolute;
  right: 7%; top: 8%;
  width: 44%;
  min-height: 250px;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(255,246,228,.96));
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(3deg);
}
.hero-product-card img { max-height: 250px; width: auto; object-fit: contain; }
.badge {
  position: absolute;
  right: 0; top: 56%;
  width: 130px; height: 130px;
  border-radius: 44% 56% 55% 45% / 46% 42% 58% 54%;
  background: var(--red);
  color: #fff;
  display: grid; place-items: center;
  text-align: center;
  font-weight: 1000;
  line-height: 1.05;
  transform: rotate(7deg);
  box-shadow: 0 18px 42px rgba(227,19,42,.25);
}

/* Benefit cards */
.benefits-wrap { background: linear-gradient(180deg, #fff 0%, #fffaf2 100%); }
.benefit-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.benefit-card {
  min-height: 175px;
  padding: 22px 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.benefit-card .bubble {
  width: 62px; height: 62px;
  border-radius: 22px;
  display: grid; place-items: center;
  font-size: 1.65rem;
  background: var(--sky);
}
.benefit-card:nth-child(3n+2) .bubble { background: #fff3c1; }
.benefit-card:nth-child(3n+3) .bubble { background: #e5f7ec; }
.benefit-card strong { font-size: .95rem; line-height: 1.25; }

/* How to */
.howto { background: #f9fcff; }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.step-card {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.step-card img { width: 100%; height: 158px; object-fit: cover; }
.step-card .num {
  position: absolute; left: 13px; top: 13px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--red); color: #fff;
  border: 4px solid var(--yellow);
  display: grid; place-items: center;
  font-size: 1.2rem; font-weight: 1000;
  box-shadow: 0 9px 18px rgba(227,19,42,.25);
}
.step-card .content { padding: 20px; }
.step-card h3 { margin: 0 0 7px; font-size: 1.05rem; }
.step-card p { margin: 0; color: var(--ink-soft); font-size: .9rem; }

/* About */
.about-panel {
  border-radius: 32px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 36px;
  align-items: center;
  background: linear-gradient(135deg, #fff5de, #fffdfa 58%, #e9f7ff);
  border: 1px solid rgba(18,48,75,.08);
  box-shadow: var(--shadow-soft);
}
.about-panel h2 { margin: 0 0 15px; font-size: clamp(2.1rem, 4vw, 3.5rem); letter-spacing: -.04em; }
.about-panel p { color: var(--ink-soft); }
.about-collage { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; transform: rotate(1deg); }
.about-collage img { border-radius: 22px; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; box-shadow: var(--shadow-soft); }
.about-collage img:first-child { grid-row: span 2; aspect-ratio: auto; height: 100%; }

/* Product secondary */

/* Recipe cards */
.recipe-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.recipe-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.recipe-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.recipe-image { position: relative; }
.recipe-image img { width: 100%; height: 175px; object-fit: cover; }
.recipe-type {
  position: absolute; left: 12px; top: 12px;
  border-radius: 999px;
  padding: 7px 11px;
  color: #fff; background: var(--red);
  font-size: .73rem; font-weight: 950;
  letter-spacing: .03em;
}
.recipe-type.microwave { background: var(--green); }
.recipe-card .body { padding: 18px; }
.recipe-card h3 { margin: 0 0 8px; font-size: 1.06rem; line-height: 1.15; }
.recipe-card p { margin: 0 0 16px; color: var(--ink-soft); font-size: .9rem; }
.recipe-meta { margin-bottom: 8px; color: #708498; font-size: .78rem; font-weight: 750; }

/* Page hero */
.page-hero { background: linear-gradient(135deg, #f3fbff, #fff7e8); overflow: hidden; }
.page-hero-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; align-items: center; gap: 45px; }
.page-hero h1 { margin: 10px 0 18px; font-size: clamp(3.4rem, 7vw, 5.7rem); letter-spacing: -.065em; line-height: .92; }
.page-hero h1 .accent { color: var(--red); }
.page-hero p { max-width: 620px; color: var(--ink-soft); font-size: 1.12rem; }
.page-hero-media { position: relative; min-height: 430px; }
.page-hero-media img.main { position: absolute; right: 0; bottom: 20px; width: 78%; border-radius: 30px; box-shadow: var(--shadow); }
.page-hero-media img.pack { position: absolute; left: 0; top: 55px; width: 44%; border-radius: 24px; box-shadow: var(--shadow-soft); transform: rotate(-5deg); }

/* Recipe page */
.filterbar { background: #fff8eb; border: 1px solid rgba(18,48,75,.08); padding: 16px; border-radius: 22px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.filterbar strong { margin-right: 6px; }
.filter-chip { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 10px 16px; cursor: pointer; font-weight: 900; color: var(--ink); }
.filter-chip.active { background: var(--red); color: #fff; border-color: var(--red); }
.recipe-search { margin-left: auto; min-width: min(300px, 100%); height: 44px; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; outline: none; background: #fff; }
.recipe-grid.large { grid-template-columns: repeat(3, 1fr); }
.recipe-grid.large .recipe-image img { height: 235px; }
.recipe-grid.large .recipe-card h3 { font-size: 1.25rem; }
.featured-recipe { display: grid; grid-template-columns: .9fr 1.1fr; border-radius: 32px; overflow: hidden; background: #fff8e7; box-shadow: var(--shadow-soft); border: 1px solid var(--line); }
.featured-recipe .photo img { width: 100%; height: 100%; object-fit: cover; min-height: 560px; }
.featured-recipe .details { padding: 40px; }
.featured-recipe h2 { margin: 0 0 8px; font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: .96; letter-spacing: -.05em; }
.recipe-columns { display: grid; grid-template-columns: .8fr 1.2fr; gap: 22px; margin-top: 28px; }
.ingredients { background: #fff; border: 1px solid rgba(18,48,75,.08); border-radius: 20px; padding: 20px; }
.ingredients ul { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 10px; }
.ingredients li::before { content: "✓"; color: var(--red); font-weight: 1000; margin-right: 8px; }
.instructions { display: grid; gap: 12px; }
.instruction { display: grid; grid-template-columns: 34px 1fr; gap: 10px; }
.instruction .n { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--red); color: #fff; font-weight: 1000; }
.callout { margin-top: 36px; border-radius: 28px; padding: 32px; background: linear-gradient(135deg,#daf2ff,#fff7db); display: flex; align-items: center; gap: 20px; justify-content: space-between; }
.callout h3 { margin: 0 0 8px; font-size: 1.75rem; }
.callout p { margin: 0; color: var(--ink-soft); }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.contact-card { text-align: center; padding: 26px 16px; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-soft); }
.contact-card .contact-icon { margin: 0 auto 12px; width: 58px; height: 58px; border-radius: 20px; background: var(--sky); display: grid; place-items: center; font-size: 1.55rem; }
.contact-card:nth-child(2) .contact-icon { background: #dcf6e8; }
.contact-card:nth-child(4) .contact-icon { background: #fff0f2; }
.contact-card h3 { margin: 0 0 7px; }
.contact-card p { min-height: 54px; margin: 0 0 16px; color: var(--ink-soft); font-size: .9rem; }
.social-row { margin-top: 18px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; max-width: 620px; }
.social-link { padding: 18px; border-radius: 18px; background: #fff; border: 1px solid var(--line); text-align: center; font-weight: 900; transition: transform .18s ease; }
.social-link:hover { transform: translateY(-3px); }
.social-link small { display: block; color: var(--ink-soft); font-weight: 650; margin-top: 3px; }
.form-media { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-form { background: #e9f7ff; border-radius: 28px; padding: 32px; border: 1px solid rgba(18,48,75,.08); }
.contact-form h2 { margin: 0 0 4px; font-size: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 900; }
.field input, .field textarea { border: 1px solid rgba(18,48,75,.16); border-radius: 14px; background: #fff; padding: 13px 14px; outline: none; }
.field input:focus, .field textarea:focus { border-color: #64bce5; box-shadow: 0 0 0 4px rgba(100,188,229,.14); }
.field textarea { min-height: 140px; resize: vertical; }
.form-submit { margin-top: 14px; width: 100%; border: 0; cursor: pointer; }
.contact-media { overflow: hidden; min-height: 480px; border-radius: 28px; position: relative; background: #fff6e6; }
.contact-media img { width: 100%; height: 100%; object-fit: cover; }
.contact-media .sticker { position: absolute; left: 28px; top: 28px; width: 210px; border-radius: 20px; padding: 18px; background: rgba(255,255,255,.88); backdrop-filter: blur(10px); font-size: 1.45rem; font-weight: 1000; letter-spacing: -.03em; }
.bilingual { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.info-card { border-radius: 28px; padding: 30px; background: #fff9ea; border: 1px solid rgba(18,48,75,.08); }
.info-card.en { background: #eaf7ff; }
.info-card h2 { margin: 0 0 12px; font-size: 2rem; }
.info-card p { color: var(--ink-soft); }
.info-card p:last-child { margin-bottom: 0; }

/* Footer */
.site-footer { background: #0f3553; color: #fff; padding: 42px 0; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1.35fr 1fr 1fr; gap: 26px; align-items: start; }
.footer-logo { width: 180px; filter: drop-shadow(0 2px 0 rgba(0,0,0,.08)); }
.footer-block { display: grid; gap: 11px; font-size: .9rem; }
.footer-block a { color: rgba(255,255,255,.92); }
.footer-block a:hover { color: var(--yellow); }
.footer-title { font-weight: 950; margin-bottom: 5px; }
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.1); font-weight: 1000; }
.copyright { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.68); font-size: .82rem; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

/* Toast */
.toast { position: fixed; right: 20px; bottom: 20px; z-index: 90; max-width: 360px; padding: 14px 17px; border-radius: 14px; background: #0f3553; color: #fff; box-shadow: var(--shadow); opacity: 0; transform: translateY(12px); pointer-events: none; transition: .22s ease; }
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .header-row { grid-template-columns: 160px 1fr auto; }
  .nav a { padding: 9px 8px; font-size: .86rem; }
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .recipe-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .section { padding: 66px 0; }
  .header-row { grid-template-columns: 1fr auto; }
  .brand { width: 148px; }
  .menu-toggle { display: grid; place-items: center; }
  .nav {
    position: fixed;
    top: 78px; left: 14px; right: 14px;
    display: none;
    padding: 12px;
    flex-direction: column;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 14px; }
  .header-actions .cta { display: none; }
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-bottom: 35px; }
  .hero-copy { padding-bottom: 0; }
  .hero-visual { min-height: 480px; }
  .page-hero-media { min-height: 400px; }
  .about-panel { grid-template-columns: 1fr; }
  .recipe-grid.large { grid-template-columns: repeat(2, 1fr); }
  .featured-recipe { grid-template-columns: 1fr; }
  .featured-recipe .photo img { min-height: 360px; }
  .form-media, .bilingual { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .hero-title, .page-hero h1 { font-size: clamp(3rem, 16vw, 4.7rem); }
  .hero-visual { min-height: 390px; }
  .hero-photo-main { width: 77%; right: 1%; }
  .hero-photo-secondary { width: 52%; top: 12%; }
  .hero-product-card { width: 45%; padding: 12px; top: 7%; }
  .badge { width: 96px; height: 96px; font-size: .76rem; }
  .benefit-grid, .steps, .recipe-grid, .recipe-grid.large, .contact-grid, .social-row { grid-template-columns: 1fr 1fr; }
  .about-panel { padding: 28px; }
  .about-collage { grid-template-columns: 1fr; }
  .about-collage img:first-child { grid-row: auto; }
  .recipe-columns { grid-template-columns: 1fr; }
  .callout { align-items: flex-start; flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero-media { min-height: 320px; }
  .page-hero-media img.main { width: 82%; }
  .page-hero-media img.pack { width: 42%; }
}

@media (max-width: 430px) {
  .benefit-grid, .steps, .recipe-grid, .recipe-grid.large, .contact-grid, .social-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 345px; }
  .recipe-search { margin-left: 0; width: 100%; }
  .filterbar { align-items: stretch; }
}
