/* ═══════════════════════════════════════════════
   VIDD & HOZD — kerti parti a csomagtartódban
   játékos retró arculat · teal/narancs/mustár/kék
   ═══════════════════════════════════════════════ */

:root {
  --paper: #F7F4ED;
  --paper-warm: #F2EDE0;
  --ink: #133F35;
  --teal: #1B8E76;
  --teal-deep: #0F6B57;
  --teal-dark: #0B4A3D;
  --orange: #EF8E35;
  --orange-deep: #D97420;
  --mustard: #FFB525;
  --sand: #E9D979;
  --blue: #6FA8E2;

  --font-display: "Baloo 2", "Trebuchet MS", sans-serif;
  --font-body: "Schibsted Grotesk", "Segoe UI", sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-pop: 0 4px 0 var(--ink);
  --shadow-soft: 0 18px 50px -18px rgba(19, 63, 53, .35);
  --header-h: 84px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  /* mobil Safarin a body-ra tett vágás kevés: a dokumentum maga is túl tudna csúszni */
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html, body { overflow-x: hidden; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: clip;
}

/* papír-szemcse textúra az egész oldalon */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.55 0 0 0 0 0.52 0 0 0 0 0.46 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

::selection { background: var(--mustard); color: var(--ink); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: .8em 1.4em;
  background: var(--ink);
  color: var(--paper);
  border-radius: 0 0 14px 0;
}
.skip-link:focus { left: 0; }

/* ── Gombok ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.15;
  text-decoration: none;
  padding: .85em 1.5em;
  border-radius: 999px;
  border: 3px solid var(--ink);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translate(-2px, -3px); }
.btn:active { transform: translate(0, 0); box-shadow: 0 0 0 var(--ink); }

.btn-primary {
  background: var(--orange);
  color: var(--ink);
  box-shadow: var(--shadow-pop);
}
.btn-primary:hover { background: var(--mustard); box-shadow: 0 7px 0 var(--ink); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-style: dashed;
}
.btn-ghost:hover { background: rgba(19,63,53,.06); }

.btn-card {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  font-size: .95rem;
  box-shadow: none;
}
.btn-card:hover { background: var(--teal-deep); transform: translate(-1px,-2px); box-shadow: 3px 4px 0 rgba(19,63,53,.3); }

.btn-light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
  box-shadow: 0 4px 0 rgba(11,74,61,.55);
}
.btn-light:hover { background: var(--mustard); border-color: var(--mustard); box-shadow: 0 7px 0 rgba(11,74,61,.55); }

/* ── Fejléc ─────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s ease, box-shadow .3s ease;
}
/* a tejüveg-hátteret a ::before adja, és a fejléc FÖLÉ is kinyúlik,
   hogy mobilon az állapotsor sávjában se látsszon át a tartalom */
.site-header.scrolled::before {
  content: "";
  position: absolute;
  inset: -120px 0 0 0;
  z-index: -1;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(19,63,53,.12);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: var(--header-h);
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand img { width: clamp(120px, 14vw, 160px); height: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(.6rem, 1.6vw, 1.5rem);
}
.main-nav > a:not(.nav-cta) {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  text-decoration: none;
  position: relative;
  padding: .3em 0;
}
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--orange);
  transition: right .22s ease;
}
.main-nav > a:not(.nav-cta):hover::after { right: 0; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  background: var(--teal);
  color: var(--paper);
  padding: .6em 1.2em;
  border-radius: 999px;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-pop);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.nav-cta:hover { background: var(--orange); color: var(--ink); transform: translate(-1px,-2px); box-shadow: 0 6px 0 var(--ink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px; height: 48px;
  padding: 10px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 14px;
  cursor: pointer;
  box-shadow: var(--shadow-pop);
}
.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Hero ───────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 4vh) clamp(1rem, 5vw, 3rem) 14vh;
  overflow: clip;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-weight: 700;
  font-size: clamp(.8rem, 1.6vw, .95rem);
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: .55em 1.2em;
  box-shadow: var(--shadow-pop);
  margin: 0 0 1.6rem;
}
.hero-kicker .dot {
  width: .65em; height: .65em;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(27,142,118,.5); }
  60% { box-shadow: 0 0 0 .55em rgba(27,142,118,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 9.5vw, 7.2rem);
  line-height: .98;
  letter-spacing: -.015em;
  margin: 0 0 1.4rem;
  text-wrap: balance;
}
.hero-title .line { display: block; }
.hero-title em {
  font-style: normal;
  color: var(--orange);
  position: relative;
  display: inline-block;
  transform: rotate(-2.5deg);
}
.hero-title em::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  bottom: .04em;
  height: .14em;
  background: var(--mustard);
  z-index: -1;
  border-radius: .1em;
  transform: rotate(1.4deg);
}
.hero-lead {
  max-width: 34em;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  margin: 0 0 2.2rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* lebegő márkamotívumok */
.hero-deco, .contact-deco {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.deco { position: absolute; will-change: transform; }
.deco.flower { fill: var(--teal); }
.deco.star { fill: var(--orange); }
.deco.blob { fill: var(--sand); }
.deco.pill { fill: var(--blue); }

.f1 { width: clamp(90px, 12vw, 170px); top: 12%; right: 8%; }
.f2 { width: clamp(50px, 6vw, 90px); bottom: 18%; left: 5%; fill: var(--mustard); }
.s1 { width: clamp(60px, 8vw, 120px); top: 22%; left: 12%; }
.s2 { width: clamp(36px, 5vw, 70px); bottom: 30%; right: 26%; fill: var(--teal-deep); }
.b1 { width: clamp(80px, 11vw, 160px); top: 9%; right: 24%; }
.p1 { width: clamp(40px, 5vw, 70px); top: 8%; left: 42%; transform: rotate(18deg); }

/* −50% matrica */
.hero-sticker {
  position: absolute;
  z-index: 3;
  right: clamp(1rem, 7vw, 7rem);
  bottom: clamp(7rem, 16vh, 11rem);
  width: clamp(130px, 16vw, 200px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.hero-sticker .sticker-text {
  position: absolute;
  inset: 0;
  fill: var(--ink);
}
.hero-sticker .sticker-text text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: .04em;
}
.sticker-core {
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--mustard);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-pop);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-8deg);
}
.sticker-core strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1;
}
.sticker-core span {
  font-size: clamp(.6rem, 1vw, .75rem);
  font-weight: 700;
  letter-spacing: .04em;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  transform: translateX(-50%);
  width: 30px; height: 50px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  z-index: 2;
}
.scroll-cue span {
  position: absolute;
  left: 50%; top: 8px;
  width: 6px; height: 6px;
  margin-left: -3px;
  border-radius: 50%;
  background: var(--orange);
  animation: cue 1.6s ease-in-out infinite;
}
@keyframes cue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ── Futószalag ─────────────────────────── */
.marquee {
  overflow: clip;
  padding: 1.1rem 0;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  transform: rotate(-1.2deg) scale(1.02);
}
.marquee-teal { background: var(--teal); color: var(--paper); }
.marquee-orange { background: var(--orange); color: var(--ink); transform: rotate(1.2deg) scale(1.02); }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  width: max-content;
  will-change: transform;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.2rem, 2.6vw, 1.9rem);
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
}
.marquee-track svg { width: 1.4em; height: 1.4em; fill: currentColor; flex: none; opacity: .9; }

/* ── Szekciófejek ───────────────────────── */
section { padding: clamp(4.5rem, 10vh, 8rem) clamp(1rem, 5vw, 3rem); }

.section-head {
  max-width: 1100px;
  margin: 0 auto clamp(2.5rem, 6vh, 4.5rem);
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--teal);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: .45em 1.3em;
  box-shadow: var(--shadow-pop);
  transform: rotate(-1.5deg);
  margin: 0 0 1.3rem;
}
.eyebrow--light { background: var(--mustard); color: var(--ink); }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 5.4vw, 3.8rem);
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}
.section-head h2 em {
  font-style: normal;
  color: var(--orange);
  display: inline-block;
  transform: rotate(-2deg);
}
.section-head--light h2 { color: var(--paper); }
.section-lead {
  max-width: 38em;
  margin: 1.2rem auto 0;
  font-size: 1.1rem;
}

/* ── Hogyan működik ─────────────────────── */
.how { background: var(--paper-warm); border-top: 3px solid var(--ink); }
.steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1240px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
  counter-reset: step;
}
.step {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem 1.8rem;
  box-shadow: var(--shadow-pop);
  transition: transform .25s ease, box-shadow .25s ease;
}
.step:nth-child(odd) { transform: rotate(-.8deg); }
.step:nth-child(even) { transform: rotate(.8deg) translateY(14px); }
.step:hover { transform: rotate(0) translateY(-6px); box-shadow: 0 10px 0 var(--ink); }
.step-badge {
  position: relative;
  width: 86px; height: 86px;
  margin-bottom: 1.2rem;
  display: grid;
  place-items: center;
}
.step-badge svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.step-badge--teal svg { fill: var(--teal); }
.step-badge--orange svg { fill: var(--orange); }
.step-badge--mustard svg { fill: var(--mustard); }
.step-badge--blue svg { fill: var(--blue); }
.step-badge span {
  position: relative;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--paper);
  text-shadow: 0 2px 0 rgba(19,63,53,.4);
}
.step-badge--mustard span { color: var(--ink); text-shadow: none; }
.step h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  margin: 0 0 .5rem;
}
.step p { margin: 0; font-size: .98rem; }

/* ── Termékek ───────────────────────────── */
.products { max-width: 1340px; margin: 0 auto; }
.cat-title {
  display: flex;
  align-items: center;
  gap: .55em;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: clamp(3rem, 6vh, 4.5rem) 0 1.6rem;
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.cat-title svg { width: 1.2em; height: 1.2em; fill: var(--orange); flex: none; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem);
}
.product-grid--wide { grid-template-columns: 1fr; }

.card {
  display: flex;
  flex-direction: column;
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-pop);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-8px) rotate(-.4deg); box-shadow: 0 12px 0 var(--ink); }

.card-art {
  padding: clamp(1.2rem, 2.5vw, 2rem);
  display: grid;
  place-items: center;
  border-bottom: 3px solid var(--ink);
}
.card--teal .card-art { background: var(--teal); }
.card--blue .card-art { background: var(--blue); }
.card--mustard .card-art { background: var(--mustard); }
.card--orange .card-art { background: var(--orange); }
.card--paper .card-art { background: var(--paper-warm); }
.card-art svg { width: 100%; max-width: 360px; height: auto; transition: transform .35s cubic-bezier(.34,1.56,.64,1); }
.card:hover .card-art svg { transform: scale(1.06) rotate(1deg); }

/* fotós kártyaelőkép */
.card-art--photo { padding: 0; display: block; overflow: hidden; }
.card-art--photo img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.22,1,.36,1);
}
.card:hover .card-art--photo img { transform: scale(1.06); }
/* széles kártyán a fotó nem növeli a magasságot: a szöveges rész diktál, a kép kitölt */
.card--wide .card-art--photo { position: relative; min-height: 300px; }
.card--wide .card-art--photo img {
  position: absolute;
  inset: 0;
  height: 100%;
  aspect-ratio: auto;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding: 1.5rem 1.6rem 1.7rem;
  flex: 1;
}
.card-body h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.15;
  margin: 0;
}
.card-body > p:not(.price) { margin: 0; font-size: .98rem; flex: 1; }

.price {
  display: flex;
  align-items: baseline;
  gap: .6em;
  flex-wrap: wrap;
  margin: .4rem 0 .6rem;
  font-family: var(--font-display);
}
.price s { font-size: 1.05rem; font-weight: 600; opacity: .55; }
.price strong { font-size: 1.9rem; font-weight: 800; color: var(--teal-deep); line-height: 1; }
.price .per { font-size: .95rem; font-weight: 600; opacity: .7; }

.card--wide { flex-direction: row; align-items: stretch; }
.card--wide .card-art { border-bottom: none; border-right: 3px solid var(--ink); flex: 0 0 46%; }
.card--wide .card-body { justify-content: center; padding: 1.8rem 2.4rem; gap: .5rem; }
.card--wide .card-body h4 { font-size: 1.7rem; }
.card--wide .card-body > p:not(.price) { flex: 0 0 auto; }

.products-note {
  text-align: center;
  margin: 3rem auto 0;
  max-width: 38em;
  font-size: 1.02rem;
}
.products-note a { color: var(--teal-deep); font-weight: 700; }

/* ── Galéria (polaroidok) ───────────────── */
.gallery { max-width: 1280px; margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.4rem);
}
.polaroid {
  margin: 0;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-md);
  padding: .85rem .85rem .4rem;
  box-shadow: var(--shadow-pop);
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease;
}
.polaroid:nth-child(3n+1) { rotate: -1.6deg; }
.polaroid:nth-child(3n+2) { rotate: 1.4deg; translate: 0 10px; }
.polaroid:nth-child(3n) { rotate: -0.6deg; }
.polaroid:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 11px 0 var(--ink);
  z-index: 2;
  position: relative;
}
.polaroid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 2.5px solid var(--ink);
  border-radius: 10px;
}
.polaroid figcaption {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  text-align: center;
  padding: .65rem .2rem .5rem;
}

@media (max-width: 920px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .polaroid:nth-child(3n+2) { translate: 0 0; }
}

/* ── Miért bérelj (ragadós pakli) ───────── */
.why {
  background: var(--teal);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  position: relative;
}
.why .eyebrow { background: var(--orange); color: var(--ink); }
.stack {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.stack-card {
  position: sticky;
  top: calc(var(--header-h) + 2vh);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem) clamp(1.6rem, 4vw, 3.2rem);
  box-shadow: 0 -8px 30px -12px rgba(11,74,61,.45);
  transform-origin: center top;
}
.stack-card:nth-child(1) { top: calc(var(--header-h) + 2vh); }
.stack-card:nth-child(2) { top: calc(var(--header-h) + 2vh + 2.6rem); }
.stack-card:nth-child(3) { top: calc(var(--header-h) + 2vh + 5.2rem); }
.stack-card:nth-child(4) { top: calc(var(--header-h) + 2vh + 7.8rem); }
.stack-card:nth-child(5) { top: calc(var(--header-h) + 2vh + 10.4rem); }
.stack-card--paper { background: var(--paper); }
.stack-card--mustard { background: var(--mustard); }
.stack-card--orange { background: var(--orange); }
.stack-card--blue { background: var(--blue); }
.stack-card--teal { background: var(--sand); }
.stack-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .1em;
  display: inline-block;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: .25em 1em;
  margin-bottom: 1rem;
  background: var(--paper);
}
.stack-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  margin: 0 0 .6rem;
  line-height: 1.05;
}
.stack-card p { margin: 0; max-width: 46em; font-size: 1.05rem; }

/* ── GYIK ───────────────────────────────── */
.faq { max-width: 880px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-list details {
  border: 3px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-pop);
  overflow: hidden;
  transition: background .2s ease;
}
.faq-list details[open] { background: var(--paper-warm); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1.2rem 1.5rem;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0;
}
.faq-icon {
  flex: none;
  width: 34px; height: 34px;
  border: 2.5px solid var(--ink);
  border-radius: 50%;
  position: relative;
  background: var(--mustard);
  transition: transform .25s ease, background .25s ease;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 3px;
  border-radius: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .25s ease; }
details[open] .faq-icon { transform: rotate(180deg); background: var(--orange); }
details[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-body { padding: 0 1.5rem 1.4rem; }
.faq-body p { margin: 0; }
.faq-body a { color: var(--teal-deep); font-weight: 700; }

/* ── Kapcsolat ──────────────────────────── */
.contact {
  position: relative;
  background: var(--teal-deep);
  color: var(--paper);
  text-align: center;
  overflow: clip;
  border-top: 3px solid var(--ink);
  padding-top: clamp(5rem, 12vh, 9rem);
  padding-bottom: clamp(5rem, 12vh, 9rem);
}
.contact-inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.contact-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4.5rem, 16vw, 11rem);
  line-height: .95;
  margin: 0 0 1rem;
  color: var(--mustard);
  text-shadow: 5px 6px 0 rgba(11,58,48,.55);
  transform: rotate(-2deg);
}
.contact-lead { font-size: clamp(1.05rem, 2vw, 1.25rem); margin: 0 auto 2.2rem; max-width: 32em; }
.contact-phone {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 5.5vw, 3.4rem);
  text-decoration: none;
  color: var(--ink);
  background: var(--mustard);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: .35em .95em;
  box-shadow: 0 6px 0 var(--ink);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  margin-bottom: 2.4rem;
}
.contact-phone:hover { background: var(--orange); transform: translate(-2px,-4px); box-shadow: 0 10px 0 var(--ink); }
.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.4rem;
}
.contact-form {
  max-width: 640px;
  margin: 0 auto 2.4rem;
  text-align: left;
  background: var(--paper);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 0 var(--ink);
  padding: clamp(1.5rem, 4vw, 2.4rem);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0 0 1.2rem;
  text-align: center;
}
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.form-span { grid-column: 1 / -1; }
.contact-form label { display: flex; flex-direction: column; gap: .35rem; }
.contact-form label span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
}
.contact-form label em { color: var(--orange-deep); font-style: normal; }
.contact-form input:not([type="hidden"]),
.contact-form textarea {
  font: inherit;
  font-size: .98rem;
  color: var(--ink);
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  padding: .65em .9em;
  width: 100%;
  transition: box-shadow .15s ease, border-color .15s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(19,63,53,.45); }
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(239,142,53,.3);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; }
.form-submit:disabled { opacity: .6; cursor: wait; transform: none; }
.form-status { margin: 1rem 0 0; font-weight: 600; text-align: center; min-height: 1.5em; }
.form-status.ok { color: var(--teal-deep); }
.form-status.err { color: var(--orange-deep); }

@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
}

.contact-area {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  margin: 0;
  font-weight: 500;
  opacity: .92;
}
.cf1 { width: clamp(110px, 14vw, 220px); top: 8%; left: 4%; fill: var(--teal); opacity: .85; }
.cs1 { width: clamp(70px, 9vw, 150px); bottom: 12%; right: 6%; fill: var(--orange); }
.cb1 { width: clamp(80px, 10vw, 170px); top: 16%; right: 12%; fill: var(--sand); opacity: .9; }

/* ── Lábléc ─────────────────────────────── */
.site-footer {
  background: var(--teal-dark);
  color: var(--paper);
  padding: 3.5rem clamp(1rem, 5vw, 3rem) 2.5rem;
  border-top: 3px solid var(--ink);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  text-align: center;
}
.footer-logo { width: clamp(140px, 16vw, 190px); height: auto; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.6rem; }
.footer-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  opacity: .9;
}
.footer-nav a:hover { opacity: 1; text-decoration: underline 2px var(--mustard); text-underline-offset: 5px; }
.footer-meta { margin: 0; font-size: .95rem; opacity: .85; }
.footer-meta a { color: var(--mustard); text-decoration: none; }
.footer-meta a:hover { text-decoration: underline; }
.footer-small { margin: 0; font-size: .8rem; opacity: .55; max-width: 44em; }

/* ── 404 oldal ──────────────────────────── */
.notfound {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 4vh) clamp(1rem, 5vw, 3rem) 10vh;
  overflow: clip;
}
.nf-code {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: clamp(.4rem, 2vw, 1.2rem);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(6rem, 22vw, 14rem);
  line-height: 1;
  margin: 0 0 1rem;
  color: var(--ink);
}
.nf-flower {
  width: clamp(5rem, 18vw, 11.5rem);
  height: auto;
  fill: var(--orange);
  animation: nf-spin 18s linear infinite;
}
@keyframes nf-spin { to { transform: rotate(360deg); } }
.notfound h1 {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  margin: 0 0 .8rem;
  text-wrap: balance;
}
.nf-lead {
  position: relative;
  z-index: 2;
  max-width: 34em;
  margin: 0 0 2rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
}
.nf-cta { position: relative; z-index: 2; justify-content: center; }
.nf-help { position: relative; z-index: 2; margin: 2rem 0 0; font-weight: 500; }
.nf-help a { color: var(--teal-deep); font-weight: 700; }
.notfound .s1 { top: 16%; left: 10%; }
.notfound .b1 { top: 12%; right: 12%; }
.notfound .f2 { bottom: 16%; left: 14%; }
.notfound .p1 { bottom: 22%; right: 10%; left: auto; top: auto; }

/* ── Süti-sáv ───────────────────────────── */
.cookie-banner {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 300;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .4s ease, transform .4s cubic-bezier(.22,1,.36,1);
  pointer-events: none;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner.show { opacity: 1; transform: none; pointer-events: auto; }
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  max-width: 820px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 0 var(--ink), 0 24px 60px -20px rgba(19,63,53,.45);
  padding: 1.2rem 1.5rem;
}
.cookie-flower {
  flex: none;
  width: 52px; height: 52px;
  fill: var(--teal);
  animation: cookie-spin 14s linear infinite;
}
@keyframes cookie-spin { to { transform: rotate(360deg); } }
.cookie-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  display: block;
  margin-bottom: .2rem;
}
.cookie-text p { margin: 0; font-size: .92rem; line-height: 1.5; }
.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: none;
}
.btn-cookie { font-size: .95rem; padding: .65em 1.3em; justify-content: center; white-space: nowrap; }

@media (max-width: 700px) {
  .cookie-inner { flex-direction: column; text-align: center; gap: .9rem; }
  .cookie-actions { flex-direction: row; width: 100%; }
  .cookie-actions .btn-cookie { flex: 1; }
  .cookie-flower { width: 40px; height: 40px; }
}

/* ── Görgetésre felfedő animációk ───────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px) scale(.985);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ── Mobil ──────────────────────────────── */
@media (max-width: 1020px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .card--wide { flex-direction: column; }
  .card--wide .card-art { border-right: none; border-bottom: 3px solid var(--ink); flex: none; }
  .card--wide .card-art--photo { position: static; min-height: 0; }
  .card--wide .card-art--photo img { position: static; height: auto; aspect-ratio: 4 / 3; }
}

@media (max-width: 760px) {
  :root { --header-h: 72px; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: .8rem; right: .8rem;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    background: var(--paper);
    border: 3px solid var(--ink);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 0 var(--ink);
    padding: 1.4rem;
    gap: .9rem;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .main-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .main-nav > a:not(.nav-cta) { font-size: 1.15rem; padding: .4em 0; }
  .nav-cta { justify-content: center; }
  .hero { padding-bottom: 11rem; }
  .hero-sticker { right: 1.2rem; bottom: 5.4rem; }
  .steps { grid-template-columns: 1fr; }
  .step:nth-child(even) { transform: rotate(.8deg); }
  .stack-card { position: relative; top: auto !important; }
  .scroll-cue { display: none; }
}

/* ── Csökkentett mozgás ─────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .deco { transform: none !important; }
}
