/* ============================================================
   BioVega.ro — Hivatalos arculati kézikönyv színekkel
   Lato + Poppins (sans-serif), zöld + narancs + bézs paletta
   ============================================================ */

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

:root {
  /* Hivatalos brand book színek */
  --green-leaf: #3A7331;       /* Levéltiszta zöld - primer */
  --green-fresh: #8DC63F;      /* Friss világoszöld */
  --orange-warm: #E89B27;      /* Meleg narancs - akcens */
  --beige: #D7C6A5;            /* Bézses natúr */

  /* Származtatottak (világosabb / sötétebb árnyalatok) */
  --green-dark: #2A5424;       /* Sötétebb zöld - footer, hover */
  --green-pale: #E8F4DE;       /* Halvány zöld - hátterek */
  --green-deep: #1E3D1A;       /* Legmélyebb zöld - sötét szöveg */
  --orange-light: #FBE5C1;     /* Halvány narancs */
  --orange-dark: #C7841F;      /* Sötétebb narancs - hover */
  --beige-light: #F2EBD9;      /* Halvány bézs - mellék háttér */

  /* Neutrálok */
  --bg: #FAFAF7;               /* Fő háttér: meleg fehér */
  --bg-alt: #F5F2E8;           /* Mellék háttér: nagyon halvány bézs */
  --white: #FFFFFF;
  --text: #2A2E26;             /* Sötétszürke szöveg */
  --muted: #5A6155;            /* Tompa szürkészöld */
  --soft: #8C8F86;             /* Lágy szürke */
  --border: #E4E0D2;           /* Bézses keret */
  --border-strong: #C5BFA8;

  /* Árnyékok */
  --shadow-sm: 0 1px 2px rgba(42, 46, 38, 0.06), 0 1px 1px rgba(42, 46, 38, 0.04);
  --shadow-md: 0 4px 12px rgba(42, 46, 38, 0.08), 0 2px 4px rgba(42, 46, 38, 0.04);
  --shadow-lg: 0 16px 40px rgba(42, 46, 38, 0.12), 0 6px 12px rgba(42, 46, 38, 0.06);
  --shadow-xl: 0 32px 64px rgba(42, 46, 38, 0.18);

  /* Sarkok */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 999px;
}

/* ---------- Tipográfia (arculati kézikönyv: Lato címek, Open Sans body) ---------- */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
  font-family: 'Inter', 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.18;
  letter-spacing: -0.012em;
}

h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 700; }

h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 600;
  color: var(--green-leaf);
}

p { color: var(--muted); margin: 0.5em 0; }
p.lead { font-size: 1.13rem; color: var(--text); line-height: 1.6; }

a { color: var(--green-leaf); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green-dark); }

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

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-warm);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--orange-warm);
}

/* ---------- Layout ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 28px; }
section { padding: clamp(64px, 9vw, 120px) 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.25s; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--green-leaf);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-accent {
  background: var(--orange-warm);
  color: var(--white);
}
.btn-accent:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--green-leaf);
  border: 1.5px solid var(--green-leaf);
}
.btn-ghost:hover {
  background: var(--green-leaf);
  color: var(--white);
}
.btn-light {
  background: var(--white);
  color: var(--green-deep);
  box-shadow: var(--shadow-sm);
}
.btn-light:hover {
  background: var(--green-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.88);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img { height: 58px; width: auto; }
.brand-text {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.55rem;
  color: var(--green-leaf);
  letter-spacing: -0.01em;
}
.nav {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav a {
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.93rem;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  position: relative;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.nav a:hover { background: var(--green-pale); color: var(--green-leaf); }
.nav a.active {
  background: var(--green-leaf);
  color: var(--white);
}
.nav .has-sub { position: relative; }
.nav .has-sub > a::after {
  content: '▾';
  margin-left: 4px;
  font-size: 0.7em;
  opacity: 0.6;
}
.nav .submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
}
.nav .has-sub:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav .submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-xs);
  background: transparent;
  font-weight: 500;
}
.nav .submenu a:hover { background: var(--green-pale); }

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--beige-light);
  border-radius: var(--radius-full);
  padding: 4px;
}
.lang-switch a {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  color: var(--muted);
  letter-spacing: 0.06em;
}
.lang-switch a.active {
  background: var(--green-leaf);
  color: var(--white);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--green-leaf);
}
.menu-toggle svg { width: 28px; height: 28px; }

/* ============================================================
   HERO szekciók
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(60px, 8vw, 96px) 0 clamp(80px, 10vw, 140px);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, var(--green-pale) 0%, transparent 50%),
    radial-gradient(circle at 12% 90%, var(--orange-light) 0%, transparent 45%),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 { margin-bottom: 24px; }
.hero .lead { max-width: 540px; margin-bottom: 36px; }
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 48px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.hero-meta-stat strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 2.1rem;
  color: var(--green-leaf);
  font-weight: 700;
  line-height: 1;
}
.hero-meta-stat span {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
  display: block;
}
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.hero-visual .img-main {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: rotate(-1.5deg);
  background: var(--white);
  padding: 14px;
}
.hero-visual .img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.hero-visual .img-accent {
  position: absolute;
  bottom: -30px;
  left: -40px;
  width: 220px;
  height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(4deg);
  border: 8px solid var(--white);
}
.hero-visual .img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual .floating-card {
  position: absolute;
  top: 32px;
  right: -16px;
  background: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
  transform: rotate(3deg);
}
.floating-card-icon {
  width: 46px;
  height: 46px;
  background: var(--orange-light);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.floating-card-icon svg { width: 24px; height: 24px; color: var(--orange-warm); }
.floating-card-text strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem;
  color: var(--green-deep);
  line-height: 1.2;
  font-weight: 700;
}
.floating-card-text span {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Page hero (rövidebb, oldalakhoz) */
.page-hero {
  padding: clamp(56px, 7vw, 100px) 0 clamp(56px, 7vw, 96px);
  background: linear-gradient(180deg, var(--green-pale) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero h1 {
  max-width: 800px;
  margin: 18px auto 24px;
}
.page-hero p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--muted);
}

/* ============================================================
   Bento grid - termék kategóriák a Home-on
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 20px;
}
.bento-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none;
  color: inherit;
  position: relative;
}
.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-fresh);
}
.bento-card .img {
  flex: 1;
  overflow: hidden;
  position: relative;
  background: var(--beige-light);
}
.bento-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.bento-card:hover .img img { transform: scale(1.05); }
.bento-card .text {
  padding: 26px 28px 30px;
}
.bento-card h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
  color: var(--green-deep);
}
.bento-card p { font-size: 0.95rem; margin: 0; line-height: 1.55; }
.bento-card .arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  background: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.bento-card:hover .arrow {
  background: var(--orange-warm);
  color: var(--white);
}
.bento-card .arrow svg { width: 20px; height: 20px; transition: transform 0.3s; }
.bento-card:hover .arrow svg { transform: translate(2px, -2px); }

.bento-card.large { grid-column: span 4; grid-row: span 2; }
.bento-card.medium { grid-column: span 3; }
.bento-card.small { grid-column: span 2; }

/* ============================================================
   FEATURES sáv
   ============================================================ */
.features {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
}
.feature {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-icon {
  width: 58px;
  height: 58px;
  background: var(--green-pale);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
}
.feature-icon svg { width: 30px; height: 30px; color: var(--green-leaf); }
.feature h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--green-deep);
}
.feature p { font-size: 0.95rem; margin: 0; line-height: 1.6; }

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head.left { text-align: left; margin: 0 0 56px; }
.section-head h2 { margin-bottom: 20px; }
.section-head p { font-size: 1.1rem; color: var(--muted); }

/* ============================================================
   SPROUT GRID - csíra termékek
   ============================================================ */
.sprouts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 26px;
}
.sprout {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.sprout:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-fresh);
}
.sprout-img {
  aspect-ratio: 4/3;
  background: var(--beige-light);
  overflow: hidden;
}
.sprout-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.sprout:hover .sprout-img img { transform: scale(1.04); }
.sprout-body { padding: 22px 24px 26px; }
.sprout h3 {
  font-size: 1.22rem;
  margin-bottom: 12px;
  color: var(--green-deep);
}
.sprout-benefits {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}
.sprout-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 5px 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}
.sprout-benefits li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-fresh);
  flex-shrink: 0;
  margin-top: 10px;
}
.sprout-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

/* ============================================================
   ABOUT / Despre noi
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-visual::before {
  content: '';
  position: absolute;
  inset: -16px -16px 16px 16px;
  background: var(--orange-light);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0;
  padding: 30px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--orange-warm);
  line-height: 1;
}
.stat span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 8px;
  font-family: 'Open Sans', sans-serif;
}

/* ============================================================
   PARTNERS LOGO BAR
   ============================================================ */
.partners {
  background: var(--bg-alt);
  padding: 64px 0;
  text-align: center;
}
.partners-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.partners-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
  flex-wrap: wrap;
}
.partner-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--soft);
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.partner-logo:hover { color: var(--green-leaf); }

/* ============================================================
   RECIPE / Blog cards
   ============================================================ */
.recipes-grid, .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.recipe, .blog-post {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.recipe:hover, .blog-post:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.recipe-img, .blog-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--beige-light);
}
.recipe-img img, .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.recipe:hover .recipe-img img, .blog-post:hover .blog-img img { transform: scale(1.05); }
.recipe-body, .blog-body { padding: 24px 26px 28px; }
.tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}
.recipe h3, .blog-post h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--green-deep);
}
.recipe-meta, .blog-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 12px;
}

/* ============================================================
   Recept részletes
   ============================================================ */
.recipe-detail {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 36px 38px;
  margin-bottom: 28px;
}
.recipe-detail h3 {
  margin-bottom: 18px;
  color: var(--green-leaf);
}
.recipe-detail .ingredients,
.recipe-detail .steps {
  margin-top: 16px;
}
.recipe-detail .ingredients h4,
.recipe-detail .steps h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-warm);
  margin-bottom: 12px;
}
.recipe-detail ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.recipe-detail ul li {
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
  color: var(--text);
}
.recipe-detail ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-fresh);
}
.recipe-detail p { color: var(--text); }

/* ============================================================
   CTA SÁVOK
   ============================================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--green-leaf) 0%, var(--green-dark) 100%);
  color: var(--white);
  padding: clamp(64px, 8vw, 100px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(141, 198, 63, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-strip::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 155, 39, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-strip .container { position: relative; z-index: 1; }
.cta-strip h2 { color: var(--white); margin-bottom: 18px; }
.cta-strip p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.13rem;
  max-width: 640px;
  margin: 0 auto 36px;
}
.cta-strip .eyebrow { color: var(--green-fresh); }
.cta-strip .eyebrow::before { background: var(--green-fresh); }

/* ============================================================
   QUOTE / pull quotes
   ============================================================ */
.quote {
  max-width: 900px;
  margin: 60px auto;
  padding: 48px 60px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 5px solid var(--orange-warm);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 28px;
  font-family: 'Inter', serif;
  font-weight: 900;
  font-size: 8rem;
  color: var(--orange-warm);
  line-height: 1;
}
.quote p {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  color: var(--green-deep);
  line-height: 1.55;
}
.quote cite {
  display: block;
  margin-top: 18px;
  font-family: 'Open Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--green-leaf);
  letter-spacing: 0.04em;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 44px;
  border: 1px solid var(--border);
}
.contact-info h3 { margin-bottom: 24px; }
.contact-row {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.contact-row:last-child { border-bottom: none; }
.contact-row .ico {
  width: 42px;
  height: 42px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-row .ico svg { width: 20px; height: 20px; color: var(--green-leaf); }
.contact-row .text strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.contact-row .text a, .contact-row .text span {
  color: var(--text);
  font-size: 1rem;
  text-decoration: none;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 44px;
  border: 1px solid var(--border);
}
.contact-form h3 { margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 6px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.97rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--green-fresh);
  background: var(--white);
}
.field textarea { min-height: 130px; resize: vertical; }
.field-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--muted);
  margin: 16px 0 22px;
}

/* ============================================================
   PLACEHOLDER szövegek (még hiányzó tartalmak)
   ============================================================ */
.placeholder {
  background: var(--orange-light);
  border: 1px dashed var(--orange-dark);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin: 14px 0;
  color: #7B5400;
  font-style: italic;
  font-size: 0.92rem;
}
.placeholder::before {
  content: '✎  ';
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 80px 0 32px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 56px;
}
.footer-brand h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 1.7rem;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 340px;
  line-height: 1.65;
}
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--green-fresh); }
.footer-col p {
  font-size: 0.93rem;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-bottom a:hover {
  color: var(--green-fresh);
}

/* ============================================================
   Partner-grid (Unde ne găsești oldal)
   ============================================================ */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 24px;
  margin-top: 16px;
}
.partner-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 200px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none;
  color: inherit;
}
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-fresh);
}
.partner-icon {
  width: 72px;
  height: 72px;
  background: var(--green-pale);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.3s;
}
.partner-card:hover .partner-icon {
  background: var(--green-leaf);
}
.partner-icon svg {
  width: 34px;
  height: 34px;
  color: var(--green-leaf);
  transition: color 0.3s;
}
.partner-card:hover .partner-icon svg {
  color: var(--white);
}
.partner-card h3 {
  margin: 0;
  color: var(--green-deep);
  font-size: 1.4rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}
@media (max-width: 800px) {
  .partner-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .partner-card { padding: 32px 20px; }
}
@media (max-width: 480px) {
  .partner-grid { grid-template-columns: 1fr; }
}


/* Partner kártya logó kép */
.partner-logo-img {
  height: 56px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: filter 0.3s;
}
.partner-card h3.partner-name {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
/* .partner-card.with-logo - same as default */


/* ============================================================
   RESPONSIVE — Tablet (max 900px) és Mobil (max 600px)
   ============================================================ */

@media (max-width: 900px) {
  /* HAMBURGER MENÜ */
  .site-header { position: relative; }
  .header-inner { position: relative; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    z-index: 100;
  }
  .nav.is-open { display: flex; }
  .nav a {
    padding: 14px 24px;
    border-radius: 0;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
  }
  .nav a.active {
    background: var(--green-pale);
    color: var(--green-leaf);
  }
  .menu-toggle { display: block; }

  /* HERO — kép a szöveg alá */
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { max-width: 90%; margin: 0 auto; }
  .floating-card { display: none; }

  /* BENTO + FEATURES — 2 oszlop */
  .bento {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    grid-auto-rows: auto;
  }
  .bento-card.large,
  .bento-card.medium,
  .bento-card.small {
    grid-column: span 1;
    grid-row: span 1;
  }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

  /* DESPRE NOI / KONTAKT — egymás alá */
  .about-split { grid-template-columns: 1fr; gap: 32px; }
  .contact-split { grid-template-columns: 1fr; gap: 32px; }

  /* BLOG / REȚETE rács — 2 oszlop */
  .recipes-grid, .blog-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

  /* FOOTER — 2 oszlop */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .container { padding-left: 16px; padding-right: 16px; }

  /* Tipográfia kisebb */
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .section-head h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .section-head { margin-bottom: 32px; }

  /* MINDEN GRID → 1 oszlop */
  .bento { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .recipes-grid, .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: left; }

  /* HERO CTA gombok egymás alá teljes szélességben */
  .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  /* Header logo kisebb */
  .brand img { height: 44px; }

  /* Hero padding */
  .hero { padding: 40px 0 60px; }

  /* Footer bottom egymás alá */
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; align-items: center; }
}
