/* ============================================================
   Cimpó-hegyi málna — Prémium kiadás (málnás2)
   Arculat: mély szilva + napérlelt málnapiros
   Betűk: Montserrat (display + body) · Caveat (kézírás)
   ============================================================ */

:root {
  /* ---- palette ---- */
  --plum:     #2B0D17;   /* mély szilva alap */
  --plum-2:   #3A1320;   /* világosabb szilva */
  --plum-3:   #1F0810;   /* legmélyebb (footer) */
  --brand:    #D72D4A;   /* napérlelt málna */
  --brand-2:  #E84B66;   /* világosabb málna (gradiens) */
  --wine:     #9E1B38;   /* bor — kontrasztos akcentszöveg */
  --pink:     #F4889B;   /* pasztell rózsa */
  --blush:    #F3D2D8;   /* halvány rózsa */
  --paper:    #FBF5F4;   /* papír felület */
  --paper-2:  #F4E6E7;   /* meleg papír árnyék */
  --paper-3:  #FCEEF0;   /* rózsás papír */
  --ink:      #2B0D17;   /* tinta szöveg */
  --on-brand: #FFF1F1;

  --muted-dark:  color-mix(in srgb, var(--ink) 72%, transparent);
  --muted-light: color-mix(in srgb, var(--blush) 86%, white);

  /* ---- type ---- */
  --display: 'Montserrat', system-ui, -apple-system, sans-serif;
  --body:    'Montserrat', system-ui, -apple-system, sans-serif;
  --script:  'Caveat', cursive;

  /* ---- layout ---- */
  --maxw: 1240px;
  --pad-x: clamp(20px, 5vw, 64px);
  --announce-h: 40px;

  /* ---- radii ---- */
  --r-xl: 40px;
  --r-lg: 28px;
  --r-md: 18px;
  --r-sm: 12px;
  --r-pill: 999px;

  /* ---- shadows ---- */
  --sh-sm: 0 4px 14px rgba(43,13,23,.10);
  --sh-md: 0 16px 44px rgba(43,13,23,.14);
  --sh-lg: 0 34px 80px rgba(43,13,23,.22);
  --sh-dark: 0 40px 100px rgba(0,0,0,.45);
  --glow: 0 18px 50px rgba(215,45,74,.45);

  /* ---- motion ---- */
  --t-fast: .18s;
  --t-med: .32s;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  /* ---- z scale ---- */
  --z-base: 1;
  --z-deco: 2;
  --z-content: 5;
  --z-menu: 90;
  --z-nav: 100;
  --z-announce: 110;
  --z-top: 120;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 96px; }

/* billentyűzetes ugrólink */
.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: var(--z-top);
  background: var(--ink); color: var(--paper); padding: 10px 18px; border-radius: 8px;
  font-weight: 700; font-size: 14px; transform: translateY(-150%); transition: transform var(--t-med) var(--ease);
}
.skip-link:focus { transform: translateY(0); }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
::selection { background: var(--brand); color: var(--on-brand); }

/* premium scrollbar (támogatott böngészőkben) */
* { scrollbar-color: var(--brand) transparent; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-thumb { background: var(--wine); border-radius: 999px; border: 3px solid var(--paper); }
::-webkit-scrollbar-thumb:hover { background: var(--brand); }

/* láthatóság billentyűzettel */
:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad-x); width: 100%; }

/* ============================================================
   TYPE HELPERS
   ============================================================ */
.eyebrow {
  font-family: var(--script);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
}
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--wine);
}
.kicker::before {
  content: ''; width: 26px; height: 2px; background: var(--brand); border-radius: 2px;
}
h1, h2, h3, h4 { font-family: var(--display); margin: 0; letter-spacing: -.02em; }
.section-head { max-width: 760px; }
h2.section-title {
  font-size: clamp(36px, 5vw, 70px);
  font-weight: 800;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -.03em;
  margin: 16px 0 0;
}
.lead {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.6;
  color: var(--muted-dark);
  max-width: 60ch;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: 16px;
  min-height: 52px; padding: 15px 30px;
  border-radius: var(--r-pill); border: 2px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform var(--t-med) var(--ease), background var(--t-med) var(--ease),
              color var(--t-med) var(--ease), border-color var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn--solid { background: linear-gradient(135deg, var(--brand-2), var(--brand) 60%, var(--wine)); color: var(--on-brand); box-shadow: var(--glow); }
.btn--solid:hover { box-shadow: 0 24px 60px rgba(215,45,74,.55); }
.btn--ghost { background: transparent; border-color: color-mix(in srgb, var(--ink) 22%, transparent); color: var(--ink); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn--light { background: transparent; border-color: rgba(244,136,155,.55); color: var(--paper); }
.btn--light:hover { background: rgba(244,136,155,.14); border-color: var(--pink); }
.arrow { transition: transform var(--t-med) var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-announce);
  height: var(--announce-h);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(90deg, var(--wine), var(--brand) 50%, var(--wine));
  color: var(--on-brand);
  font-size: 13px; font-weight: 600; letter-spacing: .03em;
  padding-inline: 16px; text-align: center;
  transition: transform var(--t-med) var(--ease);
}
.announce .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--pink); flex: none; box-shadow: 0 0 0 4px rgba(244,136,155,.3); }
.announce b { font-weight: 800; }
body.scrolled .announce { transform: translateY(-100%); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: var(--announce-h) 0 auto 0; z-index: var(--z-nav);
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--pad-x);
  transition: background var(--t-med) var(--ease), padding var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease), top var(--t-med) var(--ease);
}
body.scrolled .nav {
  top: 0;
  background: color-mix(in srgb, var(--plum) 90%, transparent);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding-block: 11px;
  box-shadow: 0 12px 40px rgba(0,0,0,.28);
}
.nav__brand { display: flex; align-items: center; gap: 13px; }
.nav__logo {
  width: 50px; height: 50px; border-radius: 50%; background: var(--paper);
  display: grid; place-items: center; flex: none; box-shadow: 0 6px 18px rgba(0,0,0,.25);
  transition: transform var(--t-med) var(--ease);
}
.nav__brand:hover .nav__logo { transform: rotate(-6deg) scale(1.05); }
.nav__logo img { width: 42px; height: 42px; object-fit: contain; }
.nav__name { font-family: var(--script); font-size: 29px; font-weight: 700; color: var(--paper); line-height: .9; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a:not(.nav__cta) {
  position: relative; font-weight: 600; font-size: 15.5px; color: var(--paper); opacity: .88;
  padding: 6px 2px; transition: opacity var(--t-fast) var(--ease);
}
.nav__links a:not(.nav__cta)::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px;
  background: var(--brand); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}
.nav__links a:not(.nav__cta):hover { opacity: 1; }
.nav__links a:not(.nav__cta):hover::after { transform: scaleX(1); }
.nav__cta {
  background: linear-gradient(135deg, var(--brand-2), var(--brand)); color: var(--on-brand);
  padding: 11px 22px; min-height: 44px; display: inline-flex; align-items: center;
  border-radius: var(--r-pill); font-weight: 700; box-shadow: var(--glow);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 22px 50px rgba(215,45,74,.5); }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 10px; }
.nav__burger span { width: 26px; height: 2.5px; background: var(--paper); border-radius: 2px; transition: transform var(--t-med) var(--ease), opacity var(--t-fast) var(--ease); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  background:
    radial-gradient(900px 600px at 78% 18%, rgba(215,45,74,.30), transparent 60%),
    radial-gradient(700px 500px at 8% 90%, rgba(158,27,56,.34), transparent 60%),
    var(--plum);
  color: var(--paper);
  display: flex; align-items: center; overflow: hidden;
  padding-top: calc(var(--announce-h) + 96px); padding-bottom: 60px;
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 48px; width: 100%; }
.hero__copy { position: relative; z-index: var(--z-content); }
.hero .eyebrow { display: inline-block; margin-bottom: 4px; }
.hero h1 {
  font-size: clamp(50px, 7.6vw, 120px);
  font-weight: 800; line-height: .9; letter-spacing: -.045em;
  text-transform: uppercase; margin: 8px 0 0;
}
.hero h1 .pink { color: var(--pink); }
.hero__sub { margin: 26px 0 0; max-width: 50ch; font-size: clamp(17px, 1.4vw, 20px); line-height: 1.6; color: var(--muted-light); }
.hero__pill {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 24px;
  background: rgba(251,245,244,.08); border: 1px solid rgba(244,136,155,.3);
  padding: 9px 16px 9px 12px; border-radius: var(--r-pill); font-size: 13.5px; font-weight: 600;
  color: var(--blush); backdrop-filter: blur(6px);
}
.hero__pill .ico { width: 17px; height: 17px; color: var(--pink); flex: none; }
.hero__cta { display: flex; align-items: center; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero__fb {
  flex: none; align-self: center;
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid rgba(244,136,155,.55); color: var(--paper);
  transition: background var(--t-med) var(--ease), border-color var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.hero__fb:hover { background: var(--brand); border-color: var(--brand); transform: translateY(-3px); }
.hero__fb svg { width: 22px; height: 22px; }
.hero__stats { display: flex; gap: 38px; margin-top: 50px; flex-wrap: wrap; }
.hero__stats .num { font-size: clamp(30px, 3.2vw, 44px); font-weight: 800; color: var(--pink); line-height: 1; letter-spacing: -.02em; }
.hero__stats .lbl { font-size: 13px; line-height: 1.4; margin-top: 8px; color: var(--muted-light); max-width: 160px; }

.hero__visual { position: relative; z-index: 4; display: flex; flex-direction: column; gap: 16px; height: clamp(470px, 67vh, 700px); }
.hero__photo-wrap { position: relative; flex: 1 1 auto; min-height: 0; }

/* "kövess minket" sor a kép fölött */
.hero__follow { display: flex; align-items: center; gap: 16px; flex: none; }
.hero__follow-txt { font-size: 17.5px; line-height: 1.4; font-weight: 600; color: var(--muted-light); max-width: 32ch; }
.hero__fb--lg { width: 66px; height: 66px; border-width: 2.5px; }
.hero__fb--lg svg { width: 31px; height: 31px; }

.hero__photo {
  position: absolute; inset: 0;
  background: center/cover url("../img/malna.jpg");
  border-radius: 320px 28px 28px 28px;
  box-shadow: var(--sh-dark);
  will-change: transform;
}
.hero__photo::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  background: linear-gradient(180deg, transparent 55%, rgba(43,13,23,.35));
}
.hero__badge {
  position: absolute; left: -38px; bottom: 44px; z-index: 6;
  width: 132px; height: 132px; border-radius: 50%; background: var(--paper);
  display: grid; place-items: center; box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.hero__badge img { width: 110px; height: 110px; object-fit: contain; }

.berry {
  position: absolute; z-index: var(--z-deco);
  background: center/contain no-repeat url("../img/malnaszem.png");
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.38));
  pointer-events: none; will-change: transform;
}
.berry.blur { filter: blur(2px); opacity: .8; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 6;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--muted-light);
}
.scroll-cue .mouse { width: 24px; height: 38px; border: 2px solid rgba(244,136,155,.6); border-radius: 14px; position: relative; }
.scroll-cue .mouse::after { content:''; position:absolute; left:50%; top:7px; width:4px; height:7px; background: var(--pink); border-radius:3px; transform: translateX(-50%); animation: wheel 1.6s infinite; }
@keyframes wheel { 0%{opacity:1; top:7px;} 70%{opacity:0; top:18px;} 100%{opacity:0;} }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--brand); color: var(--on-brand); overflow: hidden;
  padding-block: 16px; border-block: 1px solid rgba(255,255,255,.12);
}
.marquee__track { display: flex; gap: 0; width: max-content; will-change: transform; }
.marquee__track span {
  font-family: var(--display); font-weight: 800; font-size: clamp(18px, 2.4vw, 30px);
  text-transform: uppercase; letter-spacing: -.01em; padding: 0 28px; display: inline-flex; align-items: center; gap: 28px;
}
.marquee__track span::after { content: ''; flex: none; width: 1.15em; height: 1.15em; background: center/contain no-repeat url("../img/malnaszem-ikon.svg"); filter: drop-shadow(0 1px 2px rgba(43,13,23,.28)); }

/* ============================================================
   SECTION BASE
   ============================================================ */
.section { padding-block: clamp(76px, 11vh, 150px); position: relative; }
.section--soft { background: var(--paper-2); }

/* ---------- RÓLUNK ---------- */
.rolunk__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.rolunk__text p { font-size: clamp(16px, 1.3vw, 18.5px); line-height: 1.78; color: var(--muted-dark); margin: 0 0 20px; max-width: 56ch; }
.rolunk__text p.lead { font-size: clamp(20px, 2vw, 26px); color: var(--ink); font-weight: 500; line-height: 1.45; margin-top: 26px; }
.rolunk__media { position: relative; }
.rolunk__media .photo { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 4/3; }
.rolunk__media .photo img { width: 100%; height: 100%; object-fit: cover; }
.rolunk__media .tag {
  position: absolute; right: -18px; bottom: -22px; background: linear-gradient(135deg, var(--brand-2), var(--brand)); color: var(--on-brand);
  border-radius: var(--r-md); padding: 18px 24px; box-shadow: var(--glow);
  font-family: var(--script); font-size: 30px; font-weight: 700; line-height: .95; max-width: 220px;
}
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 72px; }
.value {
  background: var(--paper); border: 1px solid var(--paper-2); border-radius: var(--r-md);
  padding: 30px 28px; transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.value:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--blush); }
.value .vico { width: 46px; height: 46px; border-radius: 13px; background: var(--paper-3); color: var(--brand); display: grid; place-items: center; margin-bottom: 18px; }
.value .vico svg { width: 24px; height: 24px; }
.value h3 { font-size: 21px; font-weight: 700; margin: 0 0 8px; letter-spacing: -.01em; }
.value p { margin: 0; font-size: 15px; line-height: 1.6; color: color-mix(in srgb, var(--ink) 66%, transparent); }

/* ============================================================
   FOLYAMAT (Honnan a málna)
   ============================================================ */
.process { background: var(--plum); color: var(--paper); overflow: hidden; }
.process .kicker { color: var(--pink); }
.process .kicker::before { background: var(--pink); }
.process h2.section-title { color: var(--paper); }
.process .lead { color: var(--muted-light); }
.steps { position: relative; margin-top: 64px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.steps__line { position: absolute; top: 34px; left: 6%; right: 6%; height: 2px; background: rgba(244,136,155,.2); z-index: 1; }
.steps__line i { position: absolute; inset: 0; background: linear-gradient(90deg, var(--pink), var(--brand)); transform-origin: left; transform: scaleX(0); display: block; }
.step { position: relative; z-index: 2; }
.step__num {
  width: 68px; height: 68px; border-radius: 50%; background: var(--plum-2); border: 2px solid rgba(244,136,155,.35);
  display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 22px; color: var(--pink);
  margin-bottom: 24px; transition: background var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.step.is-on .step__num { background: linear-gradient(135deg, var(--brand-2), var(--brand)); color: var(--on-brand); border-color: transparent; transform: scale(1.06); }
.step h3 { font-size: 20px; font-weight: 700; margin: 0 0 10px; }
.step p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--muted-light); max-width: 30ch; }

/* ============================================================
   VIDEÓ SÁV
   ============================================================ */
.band { position: relative; min-height: 76vh; display: flex; align-items: flex-end; overflow: hidden; color: var(--paper); }
.band__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; will-change: transform; }
.band__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(43,13,23,.30) 0%, rgba(43,13,23,.12) 45%, rgba(43,13,23,.88) 100%); }
.band__inner { position: relative; z-index: 2; padding-block: clamp(56px, 9vh, 110px); width: 100%; }
.band .eyebrow { color: var(--pink); }
.band h2 { font-size: clamp(38px, 6vw, 86px); font-weight: 800; text-transform: uppercase; letter-spacing: -.03em; line-height: .96; margin: 8px 0 0; }
.band p { max-width: 52ch; font-size: clamp(16px, 1.3vw, 19px); line-height: 1.6; margin: 20px 0 0; color: var(--muted-light); }

/* ============================================================
   TERMÉKEK
   ============================================================ */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.product {
  background: var(--paper); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--paper-2);
  box-shadow: var(--sh-sm); transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out);
  display: flex; flex-direction: column;
}
.product:hover { transform: translateY(-10px); box-shadow: var(--sh-lg); }
.product__img { position: relative; aspect-ratio: 5/4; overflow: hidden; }
.product__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.product:hover .product__img img { transform: scale(1.07); }
.product__chip {
  position: absolute; top: 15px; left: 15px; z-index: 2; background: var(--plum); color: var(--pink);
  font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 7px 13px; border-radius: var(--r-pill);
}
.product__b { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.product__b h3 { font-size: 25px; font-weight: 800; letter-spacing: -.02em; }
.product__b p { font-size: 14.5px; line-height: 1.6; color: color-mix(in srgb, var(--ink) 64%, transparent); margin: 9px 0 20px; }
.product__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--paper-2); }
.product__price { font-family: var(--display); font-weight: 800; font-size: 24px; color: var(--wine); letter-spacing: -.02em; }
.product__price small { font-size: 13px; font-weight: 600; color: color-mix(in srgb, var(--ink) 55%, transparent); }
.product__avail { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--brand); }
.product__avail .pdot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(215,45,74,.18); }

/* ============================================================
   RECEPTEK
   ============================================================ */
.recipes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; align-items: start; }
.recipe {
  position: relative; border-radius: var(--r-lg); padding: 30px 28px 28px; overflow: hidden; cursor: pointer;
  background: linear-gradient(160deg, var(--paper-3), var(--paper)); border: 1px solid var(--paper-2);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
  display: flex; flex-direction: column;
}
.recipe:hover, .recipe:focus-within { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: var(--blush); }
.recipe__idx { font-family: var(--script); font-size: 46px; color: var(--pink); line-height: .8; margin-bottom: 8px; }
.recipe h3 { font-size: 22px; font-weight: 800; letter-spacing: -.02em; margin: 0 0 10px; }
.recipe__teaser { font-size: 14.5px; line-height: 1.62; color: var(--muted-dark); margin: 0 0 16px; }
.recipe__cue { display: inline-flex; align-items: center; gap: 7px; font-family: var(--display); font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--wine); }
.recipe__cue svg { width: 16px; height: 16px; transition: transform var(--t-med) var(--ease); }
.recipe:hover .recipe__cue svg, .recipe:focus-within .recipe__cue svg { transform: rotate(180deg); }

/* hoverre/fókuszra lenyíló recept — sima magasság-animáció */
.recipe__reveal { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.recipe__inner { overflow: hidden; min-height: 0; }
.recipe:hover .recipe__reveal, .recipe:focus-within .recipe__reveal { grid-template-rows: 1fr; }
.recipe__detail { padding-top: 18px; margin-top: 16px; border-top: 1px solid var(--paper-2); }
.recipe__detail h4 { font-family: var(--display); font-size: 11.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); margin: 0 0 9px; }
.recipe__detail ul { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-wrap: wrap; gap: 6px; }
.recipe__detail ul li { font-size: 12.5px; line-height: 1.3; background: var(--paper); border: 1px solid var(--paper-2); border-radius: 999px; padding: 5px 11px; color: var(--muted-dark); }
.recipe__detail ol { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.recipe__detail ol li { font-size: 13.5px; line-height: 1.55; color: var(--muted-dark); padding-left: 4px; }
.recipe__detail ol li::marker { color: var(--brand); font-weight: 800; }
.recipe__detail p { font-size: 13.5px; line-height: 1.62; color: var(--muted-dark); margin: 0; }

/* érintőképernyőn (nincs hover): a recept alapból látszik */
@media (hover: none) {
  .recipe__reveal { grid-template-rows: 1fr; }
  .recipe__cue { display: none; }
}

/* ============================================================
   GYIK
   ============================================================ */
.faq__wrap { max-width: 880px; margin: 52px auto 0; }
.faq { border-bottom: 1px solid var(--paper-2); }
.faq summary {
  list-style: none; cursor: pointer; padding: 25px 8px 25px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: var(--display); font-weight: 700; font-size: clamp(17px, 1.8vw, 22px); letter-spacing: -.01em;
  transition: color var(--t-fast) var(--ease);
}
.faq summary:hover { color: var(--brand); }
.faq summary::-webkit-details-marker { display: none; }
.faq .plus { flex: none; width: 36px; height: 36px; border-radius: 50%; background: var(--paper-2); position: relative; transition: background var(--t-med) var(--ease); }
.faq .plus::before, .faq .plus::after { content:''; position: absolute; left: 50%; top: 50%; background: var(--brand); border-radius: 2px; transform: translate(-50%,-50%); transition: transform var(--t-med) var(--ease); }
.faq .plus::before { width: 14px; height: 2.5px; }
.faq .plus::after { width: 2.5px; height: 14px; }
.faq[open] .plus { background: linear-gradient(135deg, var(--brand-2), var(--brand)); }
.faq[open] .plus::before, .faq[open] .plus::after { background: var(--on-brand); }
.faq[open] .plus::after { transform: translate(-50%,-50%) scaleY(0); }
.faq__a { padding: 0 56px 26px 0; font-size: 16px; line-height: 1.72; color: color-mix(in srgb, var(--ink) 72%, transparent); }
.faq__a p { margin: 0; }

/* ============================================================
   KAPCSOLAT
   ============================================================ */
.kapcsolat { background: var(--plum); color: var(--paper); }
.kapcsolat .kicker { color: var(--pink); }
.kapcsolat .kicker::before { background: var(--pink); }
.kapcsolat h2.section-title { color: var(--paper); }
.kapcsolat .lead { color: var(--muted-light); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(34px, 5vw, 70px); margin-top: 52px; align-items: stretch; }
.contact__info { display: flex; flex-direction: column; gap: 26px; }
.cinfo { display: flex; gap: 18px; align-items: flex-start; }
.cinfo .ico { flex: none; width: 50px; height: 50px; border-radius: 14px; background: var(--plum-2); display: grid; place-items: center; color: var(--pink); }
.cinfo .ico svg { width: 22px; height: 22px; }
.cinfo h4 { margin: 0 0 5px; font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--pink); font-weight: 700; }
.cinfo p { margin: 0; font-size: 17px; line-height: 1.5; color: var(--muted-light); }
.cinfo a.line:hover { color: var(--pink); }
.hours { margin-top: 4px; display: grid; gap: 2px; }
.contact__actions { display: flex; gap: 12px; margin-top: 10px; flex-wrap: wrap; }
.contact__socials { display: flex; gap: 12px; margin-top: 18px; }
.contact__socials a { width: 48px; height: 48px; border-radius: 14px; background: var(--plum-2); display: grid; place-items: center; color: var(--paper); transition: background var(--t-med) var(--ease), transform var(--t-med) var(--ease); }
.contact__socials a:hover { background: var(--brand); transform: translateY(-3px); }
.contact__socials svg { width: 22px; height: 22px; }
.contact__map { border-radius: var(--r-lg); overflow: hidden; min-height: 420px; box-shadow: var(--sh-dark); border: 1px solid var(--plum-2); }
.contact__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: saturate(.9); display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--plum-3); color: color-mix(in srgb, var(--blush) 70%, transparent); padding-block: 52px; }
.footer__top { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer__brand { display: flex; align-items: center; gap: 13px; }
.footer__brand .nav__logo { width: 46px; height: 46px; }
.footer__brand .nav__logo img { width: 38px; height: 38px; }
.footer__name { font-family: var(--script); font-size: 27px; color: var(--paper); }
.footer__links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer__links a { font-size: 14.5px; font-weight: 600; transition: color var(--t-fast) var(--ease); }
.footer__links a:hover { color: var(--pink); }
.footer__bottom { margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(244,136,155,.15); display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13px; }
.footer__bottom a, .footer__bottom #cb-reopen { color: color-mix(in srgb, var(--blush) 80%, white); font: inherit; text-decoration: underline; text-underline-offset: 2px; cursor: pointer; transition: color var(--t-fast) var(--ease); }
.footer__bottom a:hover, .footer__bottom #cb-reopen:hover { color: var(--pink); }

/* ============================================================
   REVEAL / MOTION STATE
   ============================================================ */
.reveal { opacity: 0; transform: translateY(38px); }
.no-gsap .reveal,
.no-gsap [data-hero],
.no-gsap .hero__visual,
.no-gsap .berry,
.no-gsap .scroll-cue { opacity: 1 !important; transform: none !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px 26px; }
  .steps__line { display: none; }
}
@media (max-width: 980px) {
  .nav__links {
    position: fixed; inset: 0 0 auto 0; top: 0; z-index: var(--z-menu);
    flex-direction: column; align-items: stretch; gap: 4px;
    background: color-mix(in srgb, var(--plum) 97%, transparent);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    padding: 100px var(--pad-x) 30px;
    transform: translateY(-105%); transition: transform .45s var(--ease);
    box-shadow: 0 20px 50px rgba(0,0,0,.4); height: auto;
  }
  .nav__links a:not(.nav__cta) { padding: 15px 4px; font-size: 19px; border-bottom: 1px solid rgba(244,136,155,.12); opacity: 1; }
  .nav__links a:not(.nav__cta)::after { display: none; }
  .nav__links .nav__cta { text-align: center; justify-content: center; margin-top: 16px; }
  body.menu-open { overflow: hidden; }
  body.menu-open .nav__links { transform: translateY(0); }
  body.menu-open .nav__burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
  body.menu-open .nav__burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .nav__burger { display: flex; z-index: var(--z-top); }

  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__visual { height: auto; order: -1; }
  .hero__photo-wrap { min-height: 52vh; }
  .hero__badge { left: auto; right: 16px; bottom: 16px; width: 100px; height: 100px; }
  .hero__badge img { width: 84px; height: 84px; }
  .rolunk__grid, .contact__grid { grid-template-columns: 1fr; }
  .rolunk__media { order: -1; }
  .values, .products, .recipes { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .hero__stats { gap: 22px 32px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .steps { grid-template-columns: 1fr; }
  .rolunk__media .tag { right: 0; font-size: 26px; }
  .footer__top, .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .scroll-cue .mouse::after { animation: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
