/* ============================================
   42 NAP — Li Mengyi
   East-meets-West design system
   ============================================ */

:root {
  --ink: #211d1a;
  --ink-soft: #4d453f;
  --paper: #faf6ef;
  --paper-warm: #f3ece1;
  --white: #ffffff;
  --red: #b23a30;
  --red-deep: #8e2b23;
  --gold: #c19a3f;
  --gold-soft: #e6d3a3;
  --sage: #8a9b7c;
  --radius: 18px;
  --shadow: 0 10px 40px rgba(33, 29, 26, 0.10);
  --shadow-lift: 0 18px 60px rgba(33, 29, 26, 0.16);
  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

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

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-deep); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- Decorative background blobs ---------- */
.bg-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  z-index: -1;
  animation: blobFloat 18s ease-in-out infinite alternate;
}
.bg-blob.b1 { width: 480px; height: 480px; background: #f5dfc8; top: -140px; right: -120px; }
.bg-blob.b2 { width: 420px; height: 420px; background: #ecd9d2; bottom: -160px; left: -140px; animation-delay: -6s; }

@keyframes blobFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.08); }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(33, 29, 26, 0.07);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand:hover { color: var(--ink); }
.brand .seal {
  width: 42px;
  height: 42px;
  background: var(--red);
  color: var(--paper);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 2px rgba(250, 246, 239, 0.35);
  transform: rotate(-3deg);
  transition: transform 0.3s ease;
}
.brand:hover .seal { transform: rotate(3deg) scale(1.05); }
.brand small { display: block; font-family: var(--font-body); font-size: 0.68rem; font-weight: 400; color: var(--ink-soft); letter-spacing: 0.14em; text-transform: uppercase; }

.main-nav { display: flex; gap: 26px; align-items: center; }
.main-nav a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.28s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active, .main-nav a:hover { color: var(--ink); }

.nav-cta {
  background: var(--red);
  color: var(--paper) !important;
  padding: 9px 20px !important;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.nav-cta::after { display: none; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(178, 58, 48, 0.35); }

/* Kosár gomb a menüben */
.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: 1.5px solid var(--gold-soft);
  color: var(--ink);
  border-radius: 999px;
  padding: 7px 14px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  line-height: 1;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.cart-btn:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.cart-btn .cart-count {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--red);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.hero-kicker::before { content: ""; width: 34px; height: 2px; background: var(--gold); }
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--red); }
.hero p.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 34em; margin-bottom: 32px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.btn-primary { background: var(--red); color: var(--paper); box-shadow: 0 10px 26px rgba(178, 58, 48, 0.3); }
.btn-primary:hover { background: var(--red-deep); color: var(--paper); transform: translateY(-3px); box-shadow: 0 16px 34px rgba(178, 58, 48, 0.4); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px rgba(33, 29, 26, 0.18); }
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--gold); color: var(--ink); transform: translateY(-3px); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero visual: animated bowl */
.hero-visual { position: relative; display: grid; place-items: center; }
.hero-visual svg { width: min(380px, 90%); height: auto; }
.steam path {
  stroke: var(--gold);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  opacity: 0;
  animation: steamRise 4s ease-in-out infinite;
}
.steam path:nth-child(2) { animation-delay: 1.2s; }
.steam path:nth-child(3) { animation-delay: 2.4s; }
@keyframes steamRise {
  0%   { opacity: 0; transform: translateY(12px); }
  30%  { opacity: 0.8; }
  70%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-26px); }
}
.hero-badge {
  position: absolute;
  top: 8%;
  right: 4%;
  background: var(--white);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: 0.9rem;
  animation: floatY 5s ease-in-out infinite;
}
.hero-badge span { color: var(--red); font-size: 1.3rem; font-family: var(--font-display); }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0 0;
}
.stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--red);
}
.stat span { font-size: 0.88rem; color: var(--ink-soft); font-weight: 600; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; position: relative; }
.section.alt { background: var(--paper-warm); }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head .kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); }

/* lattice divider */
.divider {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 16px auto 0;
}
.divider i {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.7;
}
.divider i:nth-child(2) { background: var(--red); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about-figure { position: relative; }
.about-figure .frame {
  background: linear-gradient(145deg, #fdfaf4, #f1e6d4);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
}
.about-figure .frame .big-char {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--red);
  line-height: 1;
}
.about-figure .frame p { margin-top: 12px; font-size: 0.95rem; color: var(--ink-soft); }
.about-figure::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--gold-soft);
  border-radius: 24px;
  z-index: -1;
}
.about-text h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 18px; }
.about-text p { margin-bottom: 16px; color: var(--ink-soft); }
.about-text .signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--ink);
  margin-top: 8px;
}

/* ---------- Product cards ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.product-card .week {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.product-card h3 { font-size: 1.2rem; }
.product-card p { font-size: 0.93rem; color: var(--ink-soft); flex: 1; }
.product-card .price { font-size: 1.35rem; font-weight: 800; color: var(--ink); }
.product-card .price small { font-size: 0.8rem; color: var(--ink-soft); font-weight: 500; }
.product-card .btn { justify-content: center; }

.product-card.featured {
  background: linear-gradient(160deg, #8e2b23, #b23a30 70%);
  color: var(--paper);
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding: 36px 34px;
}
.product-card.featured .ribbon {
  position: absolute;
  top: 18px; right: -42px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 6px 48px;
  transform: rotate(35deg);
}
.product-card.featured h3 { font-size: 1.6rem; color: var(--paper); }
.product-card.featured p { color: rgba(250, 246, 239, 0.85); }
.product-card.featured .price { color: var(--paper); font-size: 1.8rem; }
.product-card.featured .btn-gold {
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
}
.product-card.featured .btn-gold:hover { background: #d4ad52; transform: translateY(-3px); }
.featured-body { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.featured-side { text-align: center; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.featured-side .old { text-decoration: line-through; opacity: 0.7; font-size: 1rem; }

/* ---------- Recipe search & cards ---------- */
.search-bar {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}
.search-bar input {
  flex: 1;
  min-width: 260px;
  max-width: 460px;
  padding: 15px 24px;
  border-radius: 999px;
  border: 2px solid rgba(33, 29, 26, 0.12);
  background: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--ink);
  outline: none;
  transition: border 0.25s ease, box-shadow 0.25s ease;
}
.search-bar input:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(193, 154, 63, 0.15); }

.filter-chips { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.chip {
  padding: 9px 20px;
  border-radius: 999px;
  border: 2px solid rgba(33, 29, 26, 0.14);
  background: transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.22s ease;
}
.chip:hover { border-color: var(--gold); color: var(--ink); transform: translateY(-2px); }
.chip.active { background: var(--red); border-color: var(--red); color: var(--paper); }

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 26px;
}
.recipe-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: var(--ink);
}
.recipe-card:hover { transform: translateY(-8px) rotate(-0.4deg); box-shadow: var(--shadow-lift); color: var(--ink); }
.recipe-card .thumb {
  height: 150px;
  display: grid;
  place-items: center;
  font-size: 3.4rem;
  position: relative;
  overflow: hidden;
}
.recipe-card .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.5), transparent 60%);
}
.recipe-card .body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.recipe-card h3 { font-size: 1.18rem; }
.recipe-card .meta { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--paper-warm);
  color: var(--ink-soft);
}
.tag.mode { background: rgba(178, 58, 48, 0.1); color: var(--red); }
.recipe-card p { font-size: 0.92rem; color: var(--ink-soft); flex: 1; }
.recipe-card .more { font-weight: 700; color: var(--red); font-size: 0.92rem; }

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-soft);
  display: none;
}
.no-results .big { font-size: 3rem; margin-bottom: 12px; }

/* ---------- Recipe detail ---------- */
.recipe-hero {
  padding: 70px 0 40px;
  text-align: center;
}
.recipe-hero .emoji { font-size: 4.2rem; margin-bottom: 14px; animation: floatY 5s ease-in-out infinite; }
.recipe-hero h1 { font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: 14px; }
.recipe-hero .meta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 12px; }
.recipe-hero .meta .tag { font-size: 0.85rem; padding: 7px 16px; }
.recipe-hero p.desc { max-width: 620px; margin: 0 auto 26px; color: var(--ink-soft); }

.recipe-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 80px;
}
.panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 30px 34px;
  box-shadow: var(--shadow);
}
.panel h2 {
  font-size: 1.35rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.panel h2::before { content: ""; width: 22px; height: 3px; background: var(--gold); border-radius: 2px; }
.panel ul { list-style: none; }
.panel ul li {
  padding: 10px 0 10px 30px;
  border-bottom: 1px dashed rgba(33, 29, 26, 0.12);
  position: relative;
}
.panel ul li:last-child { border-bottom: none; }
.panel ul li::before {
  content: "";
  position: absolute;
  left: 4px; top: 18px;
  width: 9px; height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
}
.steps-list { list-style: none; counter-reset: step; }
.steps-list li {
  counter-increment: step;
  padding: 14px 0 14px 56px;
  position: relative;
  border-bottom: 1px dashed rgba(33, 29, 26, 0.12);
}
.steps-list li:last-child { border-bottom: none; }
.steps-list li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 12px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--paper-warm);
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
}
.tip-box {
  margin-top: 22px;
  background: linear-gradient(140deg, #fbf3df, #f6e8c8);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 0.95rem;
}
.tip-box b { color: var(--red); }

/* ---------- Cooking mode ---------- */
.cook-overlay {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--paper);
  z-index: 200;
  display: none;
  flex-direction: column;
  padding: 26px;
}
.cook-overlay.open { display: flex; animation: fadeIn 0.35s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.cook-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.cook-top .title { font-family: var(--font-display); font-size: 1.1rem; opacity: 0.85; }
.cook-close {
  background: rgba(250, 246, 239, 0.12);
  border: none;
  color: var(--paper);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.cook-close:hover { background: rgba(250, 246, 239, 0.25); }
.cook-progress { height: 6px; background: rgba(250, 246, 239, 0.15); border-radius: 3px; overflow: hidden; margin-bottom: 8px; }
.cook-progress i { display: block; height: 100%; background: var(--gold); width: 0; transition: width 0.4s ease; }
.cook-step-label { text-align: center; font-size: 0.9rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin: 18px 0 6px; }
.cook-body {
  flex: 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 10px 6vw;
}
.cook-body p {
  font-size: clamp(1.5rem, 3.6vw, 2.4rem);
  font-family: var(--font-display);
  line-height: 1.45;
  max-width: 20em;
  animation: stepIn 0.4s ease;
}
@keyframes stepIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.cook-nav { display: flex; gap: 16px; justify-content: center; padding-bottom: 12px; }
.cook-nav button {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 34px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.cook-nav button:hover { transform: translateY(-2px); }
.cook-prev { background: rgba(250, 246, 239, 0.14); color: var(--paper); }
.cook-next { background: var(--gold); color: var(--ink); }
.cook-note { text-align: center; font-size: 0.8rem; opacity: 0.55; padding-bottom: 4px; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }
.post-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--ink);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--gold-soft);
}
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); color: var(--ink); border-top-color: var(--red); }
.post-card .date { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.post-card h3 { font-size: 1.4rem; }
.post-card p { color: var(--ink-soft); font-size: 0.95rem; flex: 1; }
.post-card .more { font-weight: 700; color: var(--red); }

/* Blog — letisztult lista nézet (kép nélkül) */
.blog-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.post-row {
  display: block;
  padding: 26px 4px 24px;
  color: var(--ink);
  border-bottom: 1px solid var(--line, rgba(0,0,0,0.08));
  transition: padding-left 0.28s ease, color 0.28s ease;
}
.post-row:first-child { padding-top: 6px; }
.post-row:hover { color: var(--ink); padding-left: 14px; }
.post-row .date { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.post-row h3 { font-size: 1.5rem; margin: 0 0 8px; transition: color 0.28s ease; }
.post-row:hover h3 { color: var(--red); }
.post-row p { color: var(--ink-soft); font-size: 1rem; margin: 0 0 10px; max-width: 68ch; }
.post-row .more { font-weight: 700; color: var(--red); font-size: 0.95rem; }

.article { max-width: 720px; margin: 0 auto; padding: 60px 24px 90px; }
.article .date { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.article h1 { font-size: clamp(2rem, 4.4vw, 3rem); margin: 10px 0 26px; }
.article p { margin-bottom: 20px; color: var(--ink-soft); font-size: 1.06rem; }
.article p strong { color: var(--ink); }
.article .back { display: inline-block; margin-top: 20px; font-weight: 700; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(150deg, #8e2b23, #b23a30 65%, #c1503f);
  color: var(--paper);
  border-radius: 28px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(230, 211, 163, 0.3);
  border-radius: 50%;
}
.cta-band::before { width: 240px; height: 240px; top: -90px; left: -70px; }
.cta-band::after { width: 320px; height: 320px; bottom: -140px; right: -100px; }
.cta-band h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 14px; }
.cta-band p { max-width: 540px; margin: 0 auto 28px; color: rgba(250, 246, 239, 0.88); }
.cta-band .btn-gold { background: var(--gold); color: var(--ink); }
.cta-band .btn-gold:hover { background: #d4ad52; transform: translateY(-3px); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(250, 246, 239, 0.75);
  padding: 56px 0 30px;
  margin-top: 90px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.site-footer h4 { color: var(--paper); margin-bottom: 14px; font-size: 1.05rem; }
.site-footer a { color: rgba(250, 246, 239, 0.75); }
.site-footer a:hover { color: var(--gold-soft); }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 8px; }
.footer-brand .seal {
  width: 46px; height: 46px;
  background: var(--red);
  color: var(--paper);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 14px;
  transform: rotate(-3deg);
}
.social-row { display: flex; gap: 12px; margin-top: 14px; }
.social-row a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(250, 246, 239, 0.1);
  display: grid;
  place-items: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.social-row a:hover { background: var(--red); transform: translateY(-3px); }
.social-row svg { width: 20px; height: 20px; fill: var(--paper); }
.footer-bottom {
  border-top: 1px solid rgba(250, 246, 239, 0.12);
  padding-top: 22px;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

/* ---------- Page hero (subpages) ---------- */
.page-hero { padding: 70px 0 40px; text-align: center; }
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.1rem); margin-bottom: 14px; }
.page-hero p { max-width: 600px; margin: 0 auto; color: var(--ink-soft); font-size: 1.1rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .recipe-layout { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-visual svg { width: min(260px, 70%); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .product-card.featured { flex-direction: column; text-align: center; }
  .about-figure::before { display: none; }
}
@media (max-width: 760px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 20px 24px 26px;
    gap: 18px;
    border-bottom: 1px solid rgba(33, 29, 26, 0.08);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .stats { grid-template-columns: 1fr; }
  .cook-nav button { padding: 14px 24px; font-size: 0.95rem; }
}

/* ---------- Filozófia pillérek ---------- */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; }
.pillar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 4px solid var(--gold-soft);
}
.pillar:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); border-bottom-color: var(--red); }
.pillar .glyph {
  width: 70px; height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fdfaf4, #f1e6d4);
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  font-family: var(--font-display);
  color: var(--red);
  box-shadow: inset 0 0 0 2px rgba(193, 154, 63, 0.35);
}
.pillar h3 { font-size: 1.3rem; margin-bottom: 10px; }
.pillar p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Aloldal-kártyák a főoldalon ---------- */
.subpage-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.subpage-card {
  position: relative;
  border-radius: var(--radius);
  padding: 40px 30px;
  color: var(--paper);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 230px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow);
}
.subpage-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); color: var(--paper); }
.subpage-card h3 { font-size: 1.5rem; color: var(--paper); }
.subpage-card p { color: rgba(250, 246, 239, 0.88); font-size: 0.96rem; flex: 1; }
.subpage-card .more { font-weight: 700; color: var(--gold-soft); }
.subpage-card.c-red { background: linear-gradient(155deg, #8e2b23, #b23a30); }
.subpage-card.c-ink { background: linear-gradient(155deg, #211d1a, #4d453f); }
.subpage-card.c-gold { background: linear-gradient(155deg, #a37f2c, #c19a3f); }
.subpage-card .corner {
  position: absolute;
  top: -22px; right: -22px;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(250, 246, 239, 0.12);
}

/* ---------- Zárolt recept-preview ---------- */
.recipe-card.locked { cursor: pointer; }
.recipe-card.locked .body { position: relative; }
.lock-badge {
  position: absolute;
  top: 12px; right: 14px;
  background: rgba(33, 29, 26, 0.78);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.recipe-card.locked .thumb { position: relative; }
.recipe-card.locked .thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(0px);
}
.recipe-card.locked.teaser .thumb { filter: saturate(0.55); }
.recipe-card.locked.teaser h3, .recipe-card.locked.teaser p { filter: blur(4px); user-select: none; }
.locked-more-card {
  background: linear-gradient(155deg, #211d1a, #3a332d);
  border-radius: var(--radius);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
.locked-more-card:hover { transform: translateY(-8px); }
.locked-more-card .num { font-family: var(--font-display); font-size: 2.6rem; color: var(--gold); }
.locked-more-card p { color: rgba(250, 246, 239, 0.85); font-size: 0.95rem; }

/* ---------- Vásárlási modál ---------- */
.lock-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(33, 29, 26, 0.62);
  backdrop-filter: blur(6px);
}
.lock-modal.open { display: grid; animation: fadeIn 0.3s ease; }
.lock-modal .box {
  background: var(--paper);
  border-radius: 24px;
  max-width: 520px;
  width: 100%;
  padding: 44px 38px 38px;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  animation: stepIn 0.35s ease;
  border-top: 5px solid var(--red);
}
.lock-modal .box .lock-ico {
  width: 74px; height: 74px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(145deg, #8e2b23, #b23a30);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  box-shadow: 0 12px 30px rgba(178, 58, 48, 0.4);
}
.lock-modal h3 { font-size: 1.5rem; margin-bottom: 12px; }
.lock-modal p { color: var(--ink-soft); margin-bottom: 24px; font-size: 1rem; }
.lock-modal p b { color: var(--red); }
.lock-modal .btns { display: flex; flex-direction: column; gap: 12px; }
.lock-modal .close-x {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--ink-soft);
  cursor: pointer;
}
.lock-modal .close-x:hover { color: var(--ink); }

/* ---------- Workshop kártyák ---------- */
.workshop-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.workshop-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 4px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.workshop-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.workshop-card .ico { font-size: 2.2rem; }
.workshop-card h3 { font-size: 1.3rem; }
.workshop-card p { color: var(--ink-soft); font-size: 0.95rem; flex: 1; }
.workshop-card .note { font-size: 0.85rem; color: var(--gold); font-weight: 700; }

/* Idézet sáv */
.quote-band { text-align: center; max-width: 760px; margin: 0 auto; padding: 10px 24px; }
.quote-band blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.5;
  color: var(--ink);
}
.quote-band blockquote::before { content: "„"; color: var(--red); font-size: 1.4em; }
.quote-band blockquote::after { content: "”"; color: var(--red); font-size: 1.4em; }
.quote-band cite { display: block; margin-top: 14px; font-style: normal; color: var(--gold); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.85rem; }

/* ---------- Recept monogram (emoji helyett) ---------- */
.recipe-card .thumb .mono {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: rgba(142, 43, 35, 0.55);
  position: relative;
  z-index: 1;
}
.recipe-card .thumb::before {
  content: "";
  position: absolute;
  width: 86px; height: 86px;
  border: 2px solid rgba(142, 43, 35, 0.18);
  border-radius: 50%;
  transform: rotate(45deg);
}

/* ---------- Blog borítóképek ---------- */
.post-card.has-cover { padding-top: 0; overflow: hidden; }
.post-card .cover {
  display: block;
  margin: 0 -28px 16px;
  height: 190px;
  overflow: hidden;
}
.post-card .cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.post-card:hover .cover img { transform: scale(1.06); }
.article .cover {
  margin: 6px 0 30px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.article .cover img { width: 100%; display: block; }

/* ---------- Hero portré ---------- */
.hero-photo {
  position: relative;
  width: min(400px, 88%);
  margin: 0 auto;
}
.hero-photo img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow-lift);
  display: block;
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 22px -20px -20px 22px;
  border: 2px solid var(--gold-soft);
  border-radius: 28px;
  z-index: -1;
}
.hero-photo .photo-seal {
  position: absolute;
  bottom: -18px; left: -18px;
  width: 64px; height: 64px;
  background: var(--red);
  color: var(--paper);
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  transform: rotate(-6deg);
  box-shadow: 0 12px 30px rgba(178, 58, 48, 0.4);
}
@media (max-width: 900px) {
  .hero-photo::before { display: none; }
}

/* ---------- Egyszerű recept kártya (fejléc/monogram nélkül) ---------- */
.recipe-card.plain { position: relative; min-height: 190px; }
.recipe-card.plain .body { padding: 26px 26px 28px; gap: 12px; }
.recipe-card.plain::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gold-soft);
  border-radius: var(--radius) 0 0 var(--radius);
  transition: background 0.28s ease;
}
.recipe-card.plain:hover::before { background: var(--red); }
.recipe-card.plain h3 { font-size: 1.28rem; }
.recipe-card.plain .lock-badge { top: 16px; right: 16px; }
