/* ============================================================
   Jóga Hétvége a Balatonnál — Hotel Helikon
   Design tokenek + layout + reszponzív + animációk
   ============================================================ */

:root {
  /* Színek */
  --c-bg:        #FAF6EF;   /* meleg krém háttér */
  --c-bg-tint:   #F1E9DC;   /* enyhén sötétebb szekció-háttér */
  --c-text:      #2E2A26;   /* sötét szöveg */
  --c-muted:     #6B5F52;   /* halványabb szöveg */
  --c-brown:     #5C4A3A;   /* mély földbarna (elsődleges) */
  --c-terra:     #B97A56;   /* terrakotta akcent */
  --c-terra-dk:  #A1623F;
  --c-sage:      #8A9A5B;   /* zsálya zöld */
  --c-line:      #E3D8C7;   /* finom vonal */
  --c-white:     #FFFFFF;

  /* Tipográfia */
  --f-serif: "Cormorant Garamond", Georgia, serif;
  --f-sans:  "Nunito Sans", system-ui, -apple-system, sans-serif;

  /* Egyéb */
  --maxw: 1140px;
  --radius: 14px;
  --shadow-sm: 0 4px 16px rgba(60, 45, 30, 0.07);
  --shadow-md: 0 12px 36px rgba(60, 45, 30, 0.12);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset / alap ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--f-sans);
  font-weight: 400;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Ikonok (Lucide) ---------- */
.lucide { width: 1.1em; height: 1.1em; stroke-width: 1.5; vertical-align: -0.18em; flex-shrink: 0; }
[data-lucide] { display: inline-block; }
a { color: var(--c-terra-dk); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--f-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--c-brown);
  margin: 0 0 .5em;
}

p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 780px; }
.center { text-align: center; }

/* ---------- Tipográfiai segédek ---------- */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--c-terra);
  margin-bottom: .6rem;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); }
.lede { font-size: 1.13rem; color: var(--c-muted); }
.center-lede { max-width: 640px; margin-left: auto; margin-right: auto; }

/* ---------- Gombok ---------- */
.btn {
  display: inline-block;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--c-terra); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--c-terra-dk); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: rgba(255,255,255,.15); }
.btn-outline { background: transparent; color: var(--c-brown); border-color: var(--c-line); }
.btn-outline:hover { border-color: var(--c-terra); color: var(--c-terra-dk); }
.btn-block { display: block; width: 100%; }

/* ---------- Fejléc / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 239, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--c-line); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: flex; align-items: center; color: var(--c-brown); }
.brand:hover { text-decoration: none; }
.brand-logo { display: block; height: 62px; width: auto; }

.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav a { color: var(--c-text); font-weight: 600; font-size: .98rem; }
.primary-nav a:hover { color: var(--c-terra-dk); text-decoration: none; }
.nav-cta { background: var(--c-brown); color: #fff !important; padding: 9px 20px; border-radius: 999px; }
.nav-cta:hover { background: var(--c-terra); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--c-brown); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: #2E2A26;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(46,38,28,.35) 0%, rgba(46,38,28,.6) 100%),
    linear-gradient(180deg, rgba(46,38,28,.55) 0%, rgba(46,38,28,.35) 45%, rgba(46,38,28,.72) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 760px; margin: 0 auto;
  text-align: center;
  padding-top: 60px; padding-bottom: 60px;
}
.hero-eyebrow { text-transform: uppercase; letter-spacing: .2em; font-size: .82rem; font-weight: 700; color: #f5e7d6; margin-bottom: 1rem; text-shadow: 0 1px 12px rgba(0,0,0,.4); }
.hero-title { color: #fff; font-size: clamp(2.8rem, 7vw, 5rem); margin-bottom: .4em; text-shadow: 0 2px 30px rgba(0,0,0,.45); }
.hero-lead { font-size: 1.25rem; color: #f3ece2; max-width: 580px; margin: 0 auto 1.4rem; text-shadow: 0 1px 18px rgba(0,0,0,.4); }
.hero-date { display: inline-flex; align-items: center; gap: 9px; font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 2rem; text-shadow: 0 1px 14px rgba(0,0,0,.45); }
.hero-date .lucide { width: 22px; height: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.scroll-hint {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: inline-flex; color: #fff; line-height: 1; opacity: .85;
  animation: bob 2s var(--ease) infinite;
}
.scroll-hint .lucide { width: 32px; height: 32px; }
.scroll-hint:hover { text-decoration: none; }
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ---------- Szekciók ---------- */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-tint { background: var(--c-bg-tint); }

.quote {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--c-brown);
  border-left: 3px solid var(--c-terra);
  padding-left: 1.2rem;
  margin: 2.5rem auto 0;
  max-width: 560px;
  text-align: left;
}

/* ---------- Highlight kártyák ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-icon { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 50%; background: rgba(185, 122, 86, .12); color: var(--c-terra); margin-bottom: 1rem; }
.card-icon .lucide { width: 28px; height: 28px; }
.card h3 { font-size: 1.5rem; }
.card p { color: var(--c-muted); margin: 0; }

/* ---------- Program / timeline ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.day {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.day-head { margin-bottom: 1rem; }
.day-tag {
  display: inline-block;
  background: var(--c-sage);
  color: #fff;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: .6rem;
}
.day-head h3 { font-size: 1.55rem; margin: 0; }
.schedule { list-style: none; margin: 0; padding: 0; }
.schedule li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--c-line);
  color: var(--c-muted);
  font-size: .98rem;
}
.schedule li span { font-weight: 700; color: var(--c-terra-dk); font-variant-numeric: tabular-nums; }

/* ---------- Helyszín ---------- */
.venue { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.venue-features { list-style: none; margin: 1.4rem 0; padding: 0; }
.venue-features li { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--c-line); color: var(--c-muted); }
.venue-features .lucide { width: 22px; height: 22px; color: var(--c-sage); }
.venue-address { display: flex; align-items: center; gap: 9px; font-weight: 700; color: var(--c-brown); }
.venue-address .lucide { color: var(--c-terra); width: 20px; height: 20px; }

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  min-height: 460px;
}
.gallery-item { margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-tall { grid-row: span 2; }

/* ---------- Helyszín galéria (csoportosított bélyegképek) ---------- */
.venue-gallery { margin-top: 52px; }
.venue-gallery .eyebrow.center { text-align: center; margin-bottom: 26px; }
.vg-group { text-align: center; }
.vg-group + .vg-group { margin-top: 26px; }
.vg-label {
  font-family: var(--f-sans); font-weight: 700; font-size: .8rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--c-muted);
  margin: 0 0 13px;
}
/* Egységes méretű, középre igazított bélyegképek — minden sor kiegyensúlyozottan tölti a helyet */
.vg-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
}
.vg-thumb {
  position: relative; margin: 0; padding: 0; border: 0; cursor: pointer;
  width: 214px; height: 158px; flex: 0 0 auto; max-width: 100%;
  border-radius: 14px; overflow: hidden; background: var(--c-bg-tint);
  box-shadow: var(--shadow-sm);
}
.vg-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s var(--ease); }
.vg-thumb:hover img { transform: scale(1.07); }
.vg-thumb:focus-visible { outline: 2px solid var(--c-terra); outline-offset: 2px; }
.vg-more {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(46, 42, 38, .55); color: #fff;
  font-family: var(--f-serif); font-size: 1.7rem; font-weight: 600; letter-spacing: .02em;
}
.vg-extra { display: none; }
@media (max-width: 760px) {
  .vg-grid { gap: 10px; }
  .vg-thumb { width: 46%; height: 116px; border-radius: 12px; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  background: rgba(28, 24, 20, .93);
  opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), visibility .25s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: min(1100px, 92vw); max-height: 84vh;
  border-radius: 10px; box-shadow: 0 22px 60px rgba(0, 0, 0, .5);
  background: #2E2A26;
}
.lightbox-cap {
  position: absolute; left: 0; right: 0; bottom: 20px; margin: 0; text-align: center;
  color: #F1E9DC; font-family: var(--f-sans); font-size: .95rem;
}
.lightbox-btn {
  position: absolute; display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255, 255, 255, .14); color: #fff;
  transition: background .2s var(--ease);
}
.lightbox-btn:hover { background: rgba(255, 255, 255, .28); }
.lightbox-btn .lucide { width: 24px; height: 24px; }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 18px; top: 50%; transform: translateY(-50%); }
@media (max-width: 560px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-btn { width: 44px; height: 44px; background: rgba(255, 255, 255, .26); }
  .lightbox-img { touch-action: pan-y; } /* vízszintes húzás a lapozásé, nem a böngészőé */
}

/* ---------- Sticky ajánlat-sáv (visszaszámláló) ---------- */
.promo-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  background: var(--c-brown); color: #F7F1E8;
  box-shadow: 0 -6px 26px rgba(46, 42, 38, .22);
  transform: translateY(100%);
  transition: transform .42s var(--ease);
}
.promo-bar.is-visible { transform: translateY(0); }
.promo-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; gap: 20px;
  padding: 11px 22px;
}
.promo-offer { display: flex; align-items: center; gap: 13px; min-width: 0; }
.promo-offer > .lucide { width: 22px; height: 22px; color: #E8C9A8; flex-shrink: 0; }
.promo-text { display: flex; flex-direction: column; line-height: 1.18; }
.promo-text strong { font-family: var(--f-serif); font-size: 1.18rem; font-weight: 600; }
.promo-sub { font-size: .76rem; color: #D9C9B5; }
.promo-price { font-family: var(--f-sans); font-weight: 700; font-size: 1.05rem; white-space: nowrap; }
.promo-price s { color: #B7A48E; font-weight: 600; font-size: .82rem; margin-right: 5px; }
.promo-count { display: flex; gap: 8px; margin-left: auto; }
.promo-unit {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255, 255, 255, .1); border-radius: 9px; padding: 5px 9px; min-width: 44px;
}
.promo-unit b { font-size: 1.05rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.promo-unit span { font-size: .6rem; text-transform: uppercase; letter-spacing: .07em; color: #D9C9B5; margin-top: 1px; }
.promo-cta { flex-shrink: 0; padding: 11px 24px; }
.promo-close {
  background: transparent; border: 0; color: #D9C9B5; cursor: pointer;
  padding: 6px; display: flex; flex-shrink: 0;
}
.promo-close:hover { color: #fff; }
.promo-close .lucide { width: 20px; height: 20px; }

@media (max-width: 760px) {
  /* Grid: 1. sor = ajánlat (teljes szélesség), 2. sor = visszaszámláló + CTA. Garantáltan nem csordul túl. */
  .promo-inner {
    position: relative; display: grid; align-items: center;
    grid-template-columns: 1fr;
    grid-template-areas: "offer" "count" "cta";
    gap: 9px; padding: 11px 14px 12px;
  }
  .promo-offer { grid-area: offer; gap: 9px; padding-right: 28px; min-width: 0; }
  .promo-sub { display: none; }
  .promo-text strong { font-size: 1.04rem; }
  .promo-price { font-size: .96rem; }
  .promo-count { grid-area: count; justify-self: start; margin-left: 0; gap: 16px; min-width: 0; }
  .promo-unit { flex-direction: row; align-items: baseline; gap: 3px; background: transparent; padding: 0; min-width: 0; }
  .promo-unit b { font-size: 1rem; }
  .promo-unit span { font-size: .68rem; margin-top: 0; }
  .promo-cta { grid-area: cta; width: 100%; margin: 0; padding: 12px; font-size: .96rem; } /* teljes szélességű CTA — nem csordulhat túl */
  .promo-close { position: absolute; top: 8px; right: 10px; padding: 4px; }
}
@media (prefers-reduced-motion: reduce) {
  .promo-bar { transition: none; }
}

/* ---------- Árak ---------- */
.price-showcase {
  max-width: 600px;
  margin: 56px auto 0;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 40px 38px;
  text-align: center;
}
.price-earlybird {
  display: inline-flex; align-items: center; gap: 9px;
  margin-bottom: 26px;
  padding: 9px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--c-terra), var(--c-terra-dk));
  color: #fff;
  font-family: var(--f-sans); font-weight: 700; font-size: .9rem;
  letter-spacing: .01em;
  box-shadow: var(--shadow-sm);
  animation: ebPulse 2.6s var(--ease) infinite;
}
.price-earlybird .lucide { width: 18px; height: 18px; }
.price-earlybird strong { font-weight: 800; }
@keyframes ebPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(185,122,86,.45); }
  50%      { box-shadow: 0 0 0 9px rgba(185,122,86,0); }
}
@media (prefers-reduced-motion: reduce) {
  .price-earlybird { animation: none; }
}
.price-display { margin-bottom: 12px; }
.price-display-sub { color: var(--c-muted); font-size: 1rem; margin-bottom: .35rem; }
.price-was {
  font-family: var(--f-sans); font-size: 1.15rem; font-weight: 600;
  color: var(--c-muted);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px; text-decoration-color: var(--c-terra);
  margin-right: .35rem; vertical-align: middle;
}
.price-single {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: .6rem;
  color: var(--c-muted); font-size: .95rem;
}
.price-single strong { color: var(--c-text); font-weight: 700; }
.price-single .lucide { width: 16px; height: 16px; }
.price-display-amount {
  font-family: var(--f-serif);
  font-size: clamp(3rem, 8vw, 4.2rem);
  font-weight: 600;
  color: var(--c-brown);
  line-height: 1;
  margin-bottom: .5rem;
}
.price-display-amount .price-per { font-family: var(--f-sans); font-size: 1rem; font-weight: 600; color: var(--c-muted); }
.price-includes {
  list-style: none; margin: 30px 0; padding: 0; text-align: left;
}
.price-includes li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-top: 1px solid var(--c-line);
  color: var(--c-text); font-size: 1rem;
}
.price-includes li:first-child { border-top: 0; }
.price-includes .lucide { width: 20px; height: 20px; color: var(--c-sage); flex-shrink: 0; }
.price-note { text-align: center; color: var(--c-muted); font-size: .95rem; margin-top: 28px; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ---------- Oktató ---------- */
.organizers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 56px; margin-top: 56px; }
.organizer { text-align: center; }
.organizer-photo { margin-bottom: 1.2rem; max-width: 300px; margin-left: auto; margin-right: auto; }
.organizer-photo img {
  display: block; width: 100%;
  aspect-ratio: 1 / 1; object-fit: cover; object-position: center;
  border-radius: var(--radius); box-shadow: var(--shadow-md);
}
.photo-placeholder {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--c-sage), var(--c-brown));
  color: rgba(255,255,255,.85);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-serif); font-size: 1.3rem; letter-spacing: .08em;
  box-shadow: var(--shadow-md);
}
.organizer-name { font-size: 1.6rem; margin-bottom: .15em; }
.organizer-role { text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; font-weight: 700; color: var(--c-terra); margin-bottom: .9rem; }
.organizer-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: .2rem 0 1.2rem; }
.organizer-tag {
  background: var(--c-white); border: 1px solid var(--c-line);
  border-radius: 999px; padding: 6px 14px;
  font-size: .78rem; font-weight: 700; letter-spacing: .02em; color: var(--c-brown);
}
.organizer-bio { color: var(--c-muted); font-size: 1.02rem; text-align: left; }
.organizer-bio + .organizer-bio { margin-top: .85rem; }
.organizer-bio strong { color: var(--c-brown); font-weight: 700; }

/* ---------- GYIK ---------- */
.faq { margin-top: 48px; border-top: 1px solid var(--c-line); }
.faq-item { border-bottom: 1px solid var(--c-line); }
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--c-brown);
  padding: 22px 4px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-icon { font-size: 1.6rem; color: var(--c-terra); transition: transform .3s var(--ease); flex-shrink: 0; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { color: var(--c-muted); padding: 0 4px 22px; margin: 0; }

/* ---------- Űrlap ---------- */
.section-form { background: var(--c-bg-tint); }
.reg-form {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow-md);
  margin-top: 48px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; font-size: .92rem; color: var(--c-brown); margin-bottom: 7px; }
.req { color: var(--c-terra); }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--f-sans);
  font-size: 1rem;
  color: var(--c-text);
  padding: 12px 14px;
  border: 1.5px solid var(--c-line);
  border-radius: 10px;
  background: var(--c-bg);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-terra);
  box-shadow: 0 0 0 3px rgba(185, 122, 86, .15);
}
.field textarea { resize: vertical; }
.field.error-active input, .field.error-active select { border-color: #c0392b; }
.error { display: block; color: #c0392b; font-size: .85rem; margin-top: 4px; line-height: 1.3; }
.error:empty { margin-top: 0; }

.field-check { margin-top: 4px; }
.check { display: flex; align-items: flex-start; gap: 10px; font-weight: 400 !important; color: var(--c-muted); cursor: pointer; font-size: 1rem; line-height: 1.5; }
/* Egyedi, igényes jelölőnégyzet */
.check input {
  appearance: none; -webkit-appearance: none;
  flex: 0 0 18px; width: 18px; height: 18px; margin: 3px 0 0; padding: 0;
  border: 1.5px solid var(--c-line); border-radius: 4px;
  background: var(--c-white); cursor: pointer;
  position: relative;
  transition: background-color .18s var(--ease), border-color .18s var(--ease);
}
.check input:hover { border-color: var(--c-terra); }
.check input:checked {
  background-color: var(--c-terra); border-color: var(--c-terra);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 8.5l3 3 6-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
}
.check input:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(185, 122, 86, .22); }

.form-success {
  margin-top: 20px;
  background: rgba(138, 154, 91, .15);
  border: 1px solid var(--c-sage);
  color: var(--c-brown);
  border-radius: 10px;
  padding: 16px 18px;
  font-weight: 600;
  text-align: center;
}
.form-error {
  margin-top: 18px;
  background: rgba(192, 57, 43, .08);
  border: 1px solid #c0392b;
  color: #c0392b;
  border-radius: 10px;
  padding: 14px 18px;
  font-weight: 600;
  text-align: center;
}
/* Fix helyfoglalás a Turnstile-nak, hogy a késői betöltés/frissülés ne lökje el a gombot */
.cf-turnstile { margin-top: 6px; min-height: 72px; display: flex; align-items: flex-start; }
/* Honeypot: a felhasználó elől elrejtve, de a botok kitöltik */
.hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Footer ---------- */
.site-footer { background: var(--c-brown); color: #efe6d8; padding: 64px 0 28px; }
.site-footer h4 { color: #fff; font-size: 1.25rem; margin-bottom: .6rem; }
.site-footer a { color: #f0d9c4; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-family: var(--f-serif); font-size: 1.4rem; color: #fff; margin-bottom: .4rem; }
.footer-brand .lucide { color: #e8c9a8; }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.15); font-size: .9rem; color: #cebfac; }
.footer-bottom p { margin: 0; color: #cebfac; }

/* ---------- Reveal animáció ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Reszponzív
   ============================================================ */
@media (max-width: 1024px) {
  .cards, .timeline { grid-template-columns: repeat(2, 1fr); }
  .venue { grid-template-columns: 1fr; gap: 36px; }
  .gallery { min-height: 380px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 70px; }
  .gallery { display: none; } /* a jobb oldali Hotel Helikon kollázs mobilon rejtve (lent a galéria marad) */
  .nav-wrap { height: 64px; }
  .brand-logo { height: 55px; }
  .nav-toggle { display: flex; }

  .primary-nav {
    position: fixed;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--c-bg);
    border-bottom: 1px solid var(--c-line);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
    transform: translateY(-130%);
    transition: transform .35s var(--ease);
    visibility: hidden;
  }
  .primary-nav.open { transform: translateY(0); visibility: visible; }
  .primary-nav a { padding: 14px 24px; border-bottom: 1px solid var(--c-line); }
  .nav-cta { margin: 10px 24px; text-align: center; }

  .hero { min-height: 88vh; }
  .hero-actions { flex-direction: column; align-items: stretch; }

  .cards, .timeline { grid-template-columns: 1fr; }
  .organizers { grid-template-columns: 1fr; gap: 40px; max-width: 380px; }
  .price-showcase { padding: 32px 22px; }
  .price-includes li { font-size: .95rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .quote { font-size: 1.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-hint { animation: none; }
}
