/* Google Fonts betöltése az index.html <head>-jéből történik (preconnect + link) */

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

:root {
  --green:  #3C493A;
  --accent: #a9895a;
  --cream:  #f8f5f0;
  --white:  #ffffff;
  --text:   #2a2a2a;
  --muted:  #666;
  --nav-h:  clamp(56px, 3.65vw, 140px);
  --split:  35%;
  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html, body { height: 100%; overflow: hidden; }
body { font-family: 'Montserrat', sans-serif; color: var(--text); background: var(--white); }
a { text-decoration: none; color: inherit; }
img { display: block; }
button { border: none; background: none; cursor: pointer; }

/* ═══════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════ */
.page-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--green);
  display: flex;
  align-items: stretch;
  z-index: 200;
}
.page-header-left {
  width: var(--split);
  flex-shrink: 0;
}
.page-header-left a { display: none; }
.page-header-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.29vw, 88px);
}
.page-header-nav a {
  font-size: clamp(10px, 0.677vw, 18px);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  transition: color .25s;
  white-space: nowrap;
}
.page-header-nav a:hover,
.page-header-nav a.active { color: var(--white); }
.page-header-nav a.active { border-bottom: 1px solid rgba(255,255,255,.55); padding-bottom: 2px; }

/* Szolgáltatás dropdown */
.nav-dropdown-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown-wrap > a::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 7px;
  opacity: 0.55;
  transition: transform .22s, opacity .22s;
  vertical-align: middle;
}
.nav-dropdown-wrap:hover > a::after {
  transform: rotate(-135deg) translateY(2px);
  opacity: 0.9;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--green);
  min-width: 210px;
  padding: 14px 0 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,.22);
  z-index: 500;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid var(--green);
}
.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: block;
  padding: 10px 22px;
  font-size: clamp(9px, 0.52vw, 14px);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-dropdown-item:hover {
  color: var(--white);
  background: rgba(255,255,255,.07);
}

/* Hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 210;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(255,255,255,.85);
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════════
   FULLPAGE WRAPPER
═══════════════════════════════════════════════ */
#fp-wrap {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--nav-h));
  overflow: hidden;
}

.fp-section {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
  pointer-events: none;
}
.fp-section.active {
  visibility: visible;
  pointer-events: auto;
}

/* ═══════════════════════════════════════════════
   SECTION ENTRANCE ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes sectionIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
.fp-section.active .hero-left > * { animation: sectionIn .9s var(--ease) .3s both; }
.fp-section.active .fullbleed-text { animation: sectionIn .9s var(--ease) .3s both; }
.fp-section.active .teaser-left > * { animation: sectionIn .75s var(--ease) .25s both; }
.fp-section.active .services-title { animation: sectionIn .8s var(--ease) .2s both; }
.fp-section.active .service-item   { animation: sectionIn .7s var(--ease) calc(.15s + var(--i, 0) * .06s) both; }
.fp-section.active .kapcsolat-left { animation: sectionIn .9s var(--ease) .2s both; }
.fp-section.active .kapcsolat-right{ animation: sectionIn .9s var(--ease) .36s both; }

/* ═══════════════════════════════════════════════
   0. HERO SPLIT
═══════════════════════════════════════════════ */
.hero-inner {
  display: flex;
  height: 100%;
  overflow: hidden;
}
.hero-left {
  width: var(--split);
  flex-shrink: 0;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 70%;
}
.hero-right {
  flex: 1;
  overflow: hidden;
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .7s var(--ease);
  will-change: transform;
}
.hero-right:hover img { transform: scale(1.04); }

.logo-wrap { display: flex; flex-direction: column; align-items: center; width: 82%; }
.hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1.15vw, 30px);
  font-weight: 100;
  font-style: normal;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.02em;
  line-height: 1.7;
  margin-top: clamp(28px, 3.2vw, 123px);
  padding-top: clamp(24px, 2.8vw, 108px);
  border-top: 1px solid rgba(255,255,255,0.2);
  width: 100%;
}
.logo-img  { width: 85%; height: auto; display: block; }
.logo-img--footer { width: clamp(130px, 9.5vw, 365px); }
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 2.19vw, 57px); font-weight: 300;
  letter-spacing: 0.22em; color: var(--white);
  margin-top: 8px; line-height: 1;
}
.logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(7px, 0.47vw, 12px); font-weight: 400;
  letter-spacing: 0.38em; text-transform: uppercase;
  color: rgba(255,255,255,.75); margin-top: 7px;
  display: flex; align-items: center; gap: 10px;
}
.logo-sub::before, .logo-sub::after {
  content: ''; display: inline-block;
  width: 26px; height: 1px; background: rgba(255,255,255,.5);
}

/* ═══════════════════════════════════════════════
   HERO CTA (shared)
═══════════════════════════════════════════════ */
.hero-cta {
  display: inline-block;
  padding: 13px 30px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(9px, 0.65vw, 17px);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .3s, border-color .3s;
}
.hero-cta:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.75);
}

/* ═══════════════════════════════════════════════
   1. HERO SECONDARY
═══════════════════════════════════════════════ */
.hero2-photo {
  flex: 1;
  overflow: hidden;
}
.hero2-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .7s var(--ease);
  will-change: transform;
}
.hero2-photo:hover img { transform: scale(1.04); }
.hero2-text {
  width: var(--split);
  flex-shrink: 0;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero2-block {
  width: 76%;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 115px);
}
.hero2-services {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero2-service {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: clamp(14px, 1.6vw, 61px) 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.hero2-service:first-child { padding-top: 0; }
.hero2-service:last-child { border-bottom: none; padding-bottom: 0; }
.hero2-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(8px, 0.5vw, 13px);
  font-weight: 500;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.3);
}
.hero2-service p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1.15vw, 30px);
  font-weight: 100;
  font-style: normal;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.fp-section.active .hero2-block { animation: sectionIn .9s var(--ease) .3s both; }
.hero2-block .hero-cta {
  align-self: flex-end;
  padding: 9px 18px;
  background: none;
  border: 1px solid rgba(255,255,255,0.5);
  font-size: clamp(10px, 0.72vw, 19px);
  letter-spacing: 0.22em;
  transition: border-color .25s;
}
.hero2-block .hero-cta:hover {
  background: none;
  border-color: rgba(255,255,255,0.85);
}

/* ═══════════════════════════════════════════════
   2. FULLBLEED (régi 1.)
═══════════════════════════════════════════════ */
.fullbleed-inner {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.fullbleed-inner > img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.fullbleed-text {
  position: absolute;
  bottom: clamp(32px, 3.125vw, 120px);
  left: clamp(32px, 3.33vw, 128px);
}
.fullbleed-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.4vw, 62px); font-weight: 300;
  color: var(--white); line-height: 1.35;
  text-shadow: 0 2px 28px rgba(0,0,0,.28);
}

/* ═══════════════════════════════════════════════
   2. NEKED VALÓ – újratervezett
═══════════════════════════════════════════════ */
.nv2-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  overflow: hidden;
}
.nv2-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3.1vw, 81px);
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green);
  line-height: 1.1;
}
.nv2-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 192px);
  gap: clamp(14px, 1.6vw, 61px);
  overflow-y: auto;
  max-height: 100%;
}
.nv2-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(9px, 0.62vw, 16px);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.7;
}
.nv2-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.4vw, 54px);
}
.nv2-list li {
  padding-bottom: clamp(14px, 1.4vw, 54px);
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.nv2-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.nv2-item-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(13px, 1.05vw, 27px);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.35;
}
.nv2-item-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(11px, 0.8vw, 21px);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.45;
  margin-top: 2px;
}
.nv2-cta { align-self: flex-start; }
.nv2-right {
  overflow: hidden;
  padding: clamp(32px, 4vw, 154px) clamp(32px, 4vw, 154px) clamp(32px, 4vw, 154px) 0;
}
.nv2-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  -webkit-mask-image: repeating-linear-gradient(
    to right,
    #000 0,
    #000 calc(25% - 10px),
    transparent calc(25% - 10px),
    transparent 25%
  );
  mask-image: repeating-linear-gradient(
    to right,
    #000 0,
    #000 calc(25% - 10px),
    transparent calc(25% - 10px),
    transparent 25%
  );
}
.fp-section.active .nv2-left  { animation: sectionIn .9s var(--ease) .25s both; }
.fp-section.active .nv2-right { animation: sectionIn .9s var(--ease) .05s both; }

/* ═══════════════════════════════════════════════
   3. CSOMAGOK
═══════════════════════════════════════════════ */
.pkg-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(40px, 5vw, 192px) clamp(48px, 6vw, 230px);
  gap: clamp(30px, 3.5vw, 134px);
  align-items: center;
  text-align: center;
}
.pkg-header { display: flex; flex-direction: column; gap: clamp(10px, 1vw, 38px); align-items: center; }
.pkg-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.4vw, 88px);
  font-weight: 300;
  color: var(--green);
  letter-spacing: 0.03em;
  line-height: 1.1;
}
.pkg-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(11px, 0.78vw, 20px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
  max-width: 640px;
  opacity: 0.7;
}
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 2.8vw, 108px);
  flex: 1;
  min-height: 0;
  width: 100%;
}
.pkg-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}
.pkg-card-img {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  background: #fff;
}
.pkg-card-img--split {
  display: flex;
}
.pkg-zoom {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
  overflow: hidden;
}
.pkg-card-img--split .pkg-zoom {
  width: 50%;
  flex: 1;
}
.pkg-zoom img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.pkg-zoom-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 20, 18, 0.18);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.pkg-zoom:hover .pkg-zoom-icon { opacity: 1; }
.pkg-zoom-icon svg {
  width: clamp(24px, 2vw, 77px);
  height: clamp(24px, 2vw, 77px);
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4));
}
.pkg-card-body {
  padding: clamp(16px, 1.6vw, 61px) 0 clamp(12px, 1.1vw, 42px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 0.8vw, 31px);
  text-align: center;
}
.pkg-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 1.56vw, 41px);
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.02em;
}
.pkg-card-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(10px, 0.8vw, 21px);
  font-weight: 400;
  color: var(--text);
  opacity: 0.7;
  line-height: 1.75;
}
.pkg-card-cta {
  align-self: center;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(8px, 0.58vw, 15px);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(60,73,58,0.35);
  transition: border-color .25s;
}
.pkg-card-cta:hover { border-color: var(--green); }
.fp-section.active .pkg-header { animation: sectionIn .8s var(--ease) .15s both; }
.fp-section.active .pkg-card:nth-child(1) { animation: sectionIn .8s var(--ease) .25s both; }
.fp-section.active .pkg-card:nth-child(2) { animation: sectionIn .8s var(--ease) .38s both; }
.fp-section.active .pkg-card:nth-child(3) { animation: sectionIn .8s var(--ease) .51s both; }

/* ═══════════════════════════════════════════════
   5. PROJEKTEK (összefoglalt)
═══════════════════════════════════════════════ */
.projektek2-inner {
  min-height: 100%;
  background: var(--white);
  padding: clamp(44px, 4vw, 154px) clamp(40px, 8.33vw, 320px) clamp(56px, 5vw, 192px);
}
.projektek2-header {
  text-align: center;
  margin-bottom: clamp(36px, 3.5vw, 134px);
}
.projektek2-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.4vw, 88px);
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: clamp(12px, 1.1vw, 42px);
}
.projektek2-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.1vw, 29px);
  font-weight: 100;
  font-style: normal;
  color: var(--muted);
  max-width: 960px;
  margin: 0 auto;
  line-height: 1.65;
  text-wrap: balance;
}
.fp-section.active .projektek2-header { animation: sectionIn .8s var(--ease) .15s both; }
.fp-section.active .proj-grid4 .proj-card:nth-child(1) { animation: sectionIn .7s var(--ease) .28s both; }
.fp-section.active .proj-grid4 .proj-card:nth-child(2) { animation: sectionIn .7s var(--ease) .40s both; }
.fp-section.active .proj-grid4 .proj-card:nth-child(3) { animation: sectionIn .7s var(--ease) .52s both; }
.fp-section.active .proj-grid4 .proj-card:nth-child(4) { animation: sectionIn .7s var(--ease) .64s both; }

/* ═══════════════════════════════════════════════
   PROJEKTEK – 2×2 EGYENRANGÚ RÁCS
═══════════════════════════════════════════════ */

.projektek2-inner { background: var(--cream) !important; }

.proj-grid4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 77px);
}

/* Kártya alap */
.proj-card {
  cursor: pointer;
  display: flex; flex-direction: column;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(60,73,58,0.07);
  transition: box-shadow 0.35s, transform 0.35s;
}
.proj-card:hover {
  box-shadow: 0 14px 52px rgba(60,73,58,0.18);
  transform: translateY(-6px);
}

/* Kép */
.proj-card-img {
  position: relative; overflow: hidden;
}
.proj-card-img img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; display: block;
  transition: transform .7s var(--ease);
  will-change: transform;
}
.proj-card:hover .proj-card-img img { transform: scale(1.05); }

/* Sarokkeretek a képen – arany */
.proj-card-img::before {
  content: '';
  position: absolute; top: 14px; left: 14px;
  width: 22px; height: 22px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  z-index: 2; pointer-events: none;
  opacity: 0.65;
  transition: width 0.35s, height 0.35s, opacity 0.35s;
}
.proj-card-img::after {
  content: '';
  position: absolute; bottom: 14px; right: 14px;
  width: 22px; height: 22px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  z-index: 2; pointer-events: none;
  opacity: 0.65;
  transition: width 0.35s, height 0.35s, opacity 0.35s;
}
.proj-card:hover .proj-card-img::before,
.proj-card:hover .proj-card-img::after { width: 34px; height: 34px; opacity: 1; }

/* Számbadge */
.proj-num-badge {
  position: absolute; top: clamp(10px, 1vw, 38px); left: clamp(10px, 1vw, 38px); z-index: 3;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(11px, 0.85vw, 15px); font-weight: 400;
  letter-spacing: 0.18em;
  color: #fff; background: var(--green);
  padding: 5px 11px; line-height: 1;
}

/* Kártya szöveges rész */
.proj-card-body {
  padding: clamp(16px, 1.6vw, 61px) clamp(16px, 1.6vw, 61px) clamp(20px, 2vw, 77px);
  border-top: 3px solid var(--accent);
  display: flex; flex-direction: column;
  gap: clamp(7px, 0.65vw, 25px);
  flex: 1;
}
.proj-tag {
  font-family: 'Inter', sans-serif;
  font-size: clamp(9px, 0.55vw, 11px); font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent);
}
.proj-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(19px, 1.6vw, 32px); font-weight: 300;
  color: var(--text); margin: 0; line-height: 1.12;
}
.proj-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(11px, 0.72vw, 14px); font-weight: 300;
  color: var(--muted); line-height: 1.72; margin: 0;
  flex: 1;
}
.proj-open-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(9px, 0.58vw, 11px); font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid rgba(169,137,90,0.4);
  padding-bottom: 3px; width: fit-content;
  transition: border-color 0.25s, opacity 0.25s;
}
.proj-open-link::after { content: '→'; display: inline-block; transition: transform 0.25s; }
.proj-card:hover .proj-open-link { border-color: var(--accent); opacity: 0.7; }
.proj-card:hover .proj-open-link::after { transform: translateX(5px); }

/* Kis projektek – külön kategória */
.kisp-block {
  margin-top: clamp(48px, 5vw, 192px);
  padding-top: clamp(40px, 4vw, 154px);
  border-top: 1px solid rgba(60,73,58,.12);
}
.kisp-head { text-align: center; margin-bottom: clamp(28px, 2.8vw, 108px); }
.kisp-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(9px, 0.6vw, 15px); font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--green); opacity: .65; margin-bottom: clamp(8px, 0.7vw, 27px);
}
.kisp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.4vw, 60px); font-weight: 300;
  color: var(--text); letter-spacing: 0.03em; line-height: 1.1;
  margin-bottom: clamp(10px, 0.9vw, 35px);
}
.kisp-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 0.95vw, 22px); font-weight: 100;
  color: var(--muted); max-width: 720px; margin: 0 auto;
  line-height: 1.65; text-wrap: balance;
}
/* Váltakozó kép + leírás sorok */
.kisp-list {
  display: flex;
  flex-direction: column;
  gap: clamp(44px, 4.8vw, 184px);
}
.kisp-item {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(28px, 4vw, 154px);
}
.kisp-item:nth-child(even) .kisp-item-media { order: 2; }

/* Kép */
.kisp-item-media {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 30px rgba(60,73,58,0.12);
}
.kisp-item-media img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; display: block;
  transition: transform .7s var(--ease);
  will-change: transform;
}
.kisp-item-media:hover img { transform: scale(1.04); }
.kisp-item-media:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
/* arany sarokkeretek */
.kisp-item-media::before {
  content: '';
  position: absolute; top: 14px; left: 14px;
  width: 22px; height: 22px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  z-index: 3; pointer-events: none; opacity: 0.7;
  transition: width .35s, height .35s, opacity .35s;
}
.kisp-item-media::after {
  content: '';
  position: absolute; bottom: 14px; right: 14px;
  width: 22px; height: 22px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  z-index: 3; pointer-events: none; opacity: 0.7;
  transition: width .35s, height .35s, opacity .35s;
}
.kisp-item-media:hover::before,
.kisp-item-media:hover::after { width: 34px; height: 34px; opacity: 1; }
.kisp-zoom-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 20, 18, 0.20);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
  z-index: 2;
}
.kisp-item-media:hover .kisp-zoom-icon,
.kisp-item-media:focus-visible .kisp-zoom-icon { opacity: 1; }
.kisp-zoom-icon svg {
  width: clamp(24px, 2vw, 77px);
  height: clamp(24px, 2vw, 77px);
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4));
}

/* Szöveg */
.kisp-item-text { display: flex; flex-direction: column; min-width: 0; }
.kisp-item-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(9px, 0.6vw, 13px); font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: clamp(12px, 1vw, 38px);
}
.kisp-item-tag::before {
  content: '';
  width: clamp(20px, 2vw, 77px); height: 1px;
  background: var(--accent); opacity: .5;
}
.kisp-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.3vw, 48px); font-weight: 300;
  color: var(--text); letter-spacing: 0.02em; line-height: 1.08;
  margin: 0 0 clamp(14px, 1.2vw, 46px);
}
.kisp-item-title span { color: var(--muted); font-weight: 300; }
.kisp-item-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 0.86vw, 17px); font-weight: 300;
  color: var(--muted); line-height: 1.8; margin: 0;
}
.kisp-item-link {
  align-self: flex-start;
  margin-top: clamp(18px, 1.6vw, 61px);
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(9px, 0.58vw, 12px); font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); cursor: pointer;
  background: none; border: 0;
  border-bottom: 1px solid rgba(169,137,90,0.4);
  padding: 0 0 3px;
  transition: border-color .25s, opacity .25s;
}
.kisp-item-link::after { content: '→'; display: inline-block; transition: transform .25s; }
.kisp-item-link:hover { opacity: 0.75; }
.kisp-item-link:hover::after { transform: translateX(5px); }
.kisp-item-link:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

.fp-section.active .kisp-block { animation: sectionIn .8s var(--ease) .6s both; }

/* ═══════════════════════════════════════════════
   6. VÉLEMÉNYEK (split kártya)
═══════════════════════════════════════════════ */
.vel2-inner {
  min-height: 100%;
  background: var(--green);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(32px, 4vw, 154px);
  padding: clamp(48px, 5vw, 192px) clamp(40px, 7vw, 269px);
}
.vel2-left { display: flex; flex-direction: column; min-width: 0; }
.vel2-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(9px, 0.6vw, 15px); font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
  color: #d8a54e; margin-bottom: clamp(18px, 1.6vw, 61px);
}
.vel2-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.2vw, 76px); font-weight: 300;
  color: var(--white); letter-spacing: 0.02em; line-height: 1.08;
  margin-bottom: clamp(18px, 1.7vw, 65px);
}
.vel2-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 0.95vw, 22px); font-weight: 300;
  color: rgba(255,255,255,0.6); line-height: 1.7;
  max-width: 420px;
  margin-bottom: clamp(28px, 2.6vw, 52px);
}
.vel2-controls { display: flex; align-items: center; gap: clamp(12px, 1vw, 38px); }
.vel2-arrow {
  width: clamp(42px, 3vw, 115px); height: clamp(42px, 3vw, 115px);
  border: 1px solid rgba(255,255,255,0.25); border-radius: 50%;
  color: rgba(255,255,255,0.85); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, color .25s, border-color .25s;
}
.vel2-arrow:hover { background: #d8a54e; border-color: #d8a54e; color: var(--green); }
.vel2-dots { display: flex; align-items: center; gap: clamp(7px, 0.55vw, 21px); margin-left: clamp(6px, 0.6vw, 23px); }
.vel2-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.25); padding: 0;
  transition: background .25s, transform .25s;
}
.vel2-dot.active { background: #d8a54e; transform: scale(1.4); }

.vel2-right { min-width: 0; }
.vel2-card-wrap {
  position: relative;
  min-height: clamp(340px, 28vw, 1075px);
  display: flex; align-items: center;
}
.vel2-card {
  display: none;
  flex-direction: column;
  width: 100%;
  background: rgba(0,0,0,0.16);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: clamp(30px, 2.6vw, 100px) clamp(28px, 2.4vw, 92px) clamp(28px, 2.4vw, 92px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.28);
}
.vel2-card.active { display: flex; animation: velFadeIn .5s var(--ease) both; }
@keyframes velFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
.vel2-stars {
  color: #d8a54e; letter-spacing: 4px;
  font-size: clamp(15px, 1.05vw, 22px);
  margin-bottom: clamp(12px, 1vw, 38px);
}
.vel2-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 4vw, 88px); line-height: 0.5;
  color: rgba(255,255,255,0.16);
  display: block; height: clamp(22px, 1.8vw, 69px);
  pointer-events: none;
}
.vel2-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 1.35vw, 32px); font-weight: 300;
  line-height: 1.5; color: rgba(255,255,255,0.92);
  margin-bottom: clamp(24px, 2.2vw, 84px);
}
.vel2-person {
  display: flex; align-items: center; gap: clamp(12px, 1vw, 38px);
  padding-top: clamp(20px, 1.7vw, 65px);
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: auto;
}
.vel2-avatar {
  flex-shrink: 0;
  width: clamp(46px, 3.2vw, 123px); height: clamp(46px, 3.2vw, 123px);
  border-radius: 50%;
  background: #d8a54e; color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(15px, 1.1vw, 24px); font-weight: 500;
  letter-spacing: 0.03em;
}
.vel2-person-meta { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.vel2-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 1.2vw, 30px); font-weight: 400;
  color: var(--white);
}
.vel2-role {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(9px, 0.55vw, 13px); font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.fp-section.active .vel2-left  { animation: sectionIn .8s var(--ease) .2s both; }
.fp-section.active .vel2-right { animation: sectionIn .8s var(--ease) .35s both; }

/* ═══════════════════════════════════════════════
   7. BLOG (placeholder)
═══════════════════════════════════════════════ */
.blog-inner {
  min-height: 100%;
  background: var(--white);
  padding: clamp(44px, 4vw, 154px) clamp(40px, 8.33vw, 320px) clamp(56px, 5vw, 192px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-header { text-align: center; margin-bottom: clamp(32px, 3.2vw, 123px); }
.blog-kicker {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(9px, 0.6vw, 16px); font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--green); opacity: .65; margin-bottom: clamp(10px, 0.9vw, 35px);
}
.blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.4vw, 88px); font-weight: 300;
  color: var(--text); letter-spacing: 0.04em; line-height: 1.1;
  margin-bottom: clamp(12px, 1.1vw, 42px);
}
.blog-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.1vw, 27px); font-weight: 100;
  color: var(--muted); max-width: 820px; margin: 0 auto;
  line-height: 1.65; text-wrap: balance;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 77px);
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid rgba(60,73,58,.08);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(60,73,58,.14); }
.blog-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.blog-card-art { width: 100%; height: 100%; display: block; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.blog-card:hover .blog-card-media img { transform: scale(1.05); }
.blog-card-badge {
  position: absolute;
  z-index: 2;
  top: clamp(12px, 1vw, 38px); left: clamp(12px, 1vw, 38px);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(8px, 0.5vw, 12px); font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--green); background: rgba(255,255,255,0.92);
  padding: 6px 12px; border-radius: 40px;
}
.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(20px, 1.7vw, 65px) clamp(20px, 1.6vw, 61px) clamp(24px, 2vw, 77px);
}
.blog-card-meta {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(8px, 0.5vw, 12px); font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: clamp(10px, 0.9vw, 35px);
}
.blog-card-cat { color: var(--green); }
.blog-card-date { color: var(--muted); opacity: .7; }
.blog-card-date::before { content: '·'; margin-right: 10px; }
.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 1.35vw, 32px); font-weight: 500;
  color: var(--text); line-height: 1.22;
  margin-bottom: clamp(10px, 0.9vw, 35px);
}
.blog-card-excerpt {
  font-size: clamp(12px, 0.78vw, 18px); font-weight: 300;
  color: var(--muted); line-height: 1.65;
  margin-bottom: clamp(16px, 1.3vw, 50px);
}
.blog-card-link {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: auto;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(9px, 0.55vw, 13px); font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--green); opacity: .55;
}
.blog-card-link svg { transition: transform .25s; }
.blog-card:hover .blog-card-link { opacity: .85; }
.blog-card:hover .blog-card-link svg { transform: translateX(4px); }
.fp-section.active .blog-header { animation: sectionIn .8s var(--ease) .15s both; }
.fp-section.active .blog-card:nth-child(1) { animation: sectionIn .7s var(--ease) .28s both; }
.fp-section.active .blog-card:nth-child(2) { animation: sectionIn .7s var(--ease) .36s both; }
.fp-section.active .blog-card:nth-child(3) { animation: sectionIn .7s var(--ease) .44s both; }
.fp-section.active .blog-card:nth-child(4) { animation: sectionIn .7s var(--ease) .52s both; }
.fp-section.active .blog-card:nth-child(5) { animation: sectionIn .7s var(--ease) .6s both; }
.fp-section.active .blog-card:nth-child(6) { animation: sectionIn .7s var(--ease) .68s both; }
.fp-section.active .blog-card:nth-child(7) { animation: sectionIn .7s var(--ease) .76s both; }
@keyframes svcIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════
   7. KAPCSOLAT (újratervezett)
═══════════════════════════════════════════════ */
.kapcsolat-scroll { min-height: 100%; background: var(--cream); padding-bottom: 3px; }

/* Fejléc — középre igazított cím + szöveg */
.kapc-hero {
  background: var(--white);
  padding: clamp(48px, 4.5vw, 173px) clamp(48px, 4.17vw, 160px) clamp(36px, 3.2vw, 123px);
  text-align: center;
  border-bottom: 1px solid rgba(60,73,58,0.07);
}
.kapc-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.4vw, 88px);
  font-weight: 300;
  color: var(--green);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: clamp(12px, 1.1vw, 42px);
}
.kapc-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.1vw, 29px);
  font-weight: 100;
  font-style: normal;
  color: var(--muted);
  max-width: 960px;
  margin: 0 auto;
  line-height: 1.65;
  text-wrap: balance;
}

/* Törzsrács — bal: form | jobb: info */
.kapc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.kapc-form-col {
  background: var(--cream);
  padding: clamp(44px, 4vw, 154px) clamp(48px, 4.17vw, 160px) clamp(56px, 5vw, 192px);
}
.kapc-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 1.6vw, 42px);
  font-weight: 300;
  color: var(--text);
  margin-bottom: clamp(24px, 2vw, 77px);
}

/* Jobb oldal — dark green info panel */
.kapc-info-col {
  background: var(--green);
  padding: clamp(44px, 4vw, 154px) clamp(48px, 4.17vw, 160px) clamp(56px, 5vw, 192px);
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 3.5vw, 134px);
}

/* 24h visszahívás blokk */
.kapc-callback {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 0.9vw, 35px);
  padding-bottom: clamp(32px, 3vw, 115px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.kapc-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(8px, 0.47vw, 12px);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  display: block;
}
.kapc-callback-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.2vw, 57px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
}
.kapc-callback-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 1.7vw, 40px);
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  line-height: 1.35;
  max-width: 440px;
  margin-top: clamp(4px, 0.4vw, 10px);
}
.kapc-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 1.875vw, 49px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
  text-decoration: none;
  display: block;
  margin-top: clamp(4px, 0.4vw, 15px);
  transition: opacity 0.25s;
}
.kapc-phone:hover { opacity: 0.68; }
.kapc-hours {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: clamp(6px, 0.5vw, 19px);
}
.kapc-hours-label {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(8px, 0.469vw, 12px);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}
.kapc-hours-val {
  font-size: clamp(12px, 0.729vw, 19px);
  font-weight: 300;
  color: rgba(255,255,255,0.72);
}
.kapc-hours-note {
  font-size: clamp(11px, 0.677vw, 17px);
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-top: clamp(4px, 0.4vw, 8px);
  max-width: 360px;
}

/* Elérhetőség részletek */
.kapc-details {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.4vw, 54px);
}
.kapc-detail-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.kapc-detail-label {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(8px, 0.469vw, 12px);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}
.kapc-detail-val {
  font-size: clamp(12px, 0.729vw, 19px);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.kapc-detail-val a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.25s;
}
.kapc-detail-val a:hover { color: var(--white); }
.info-tip {
  position: relative;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-left: 6px;
  cursor: pointer;
  color: rgba(255,255,255,0.5);
}
.info-tip:hover, .info-tip:focus { color: rgba(255,255,255,0.9); }
.info-tip-text {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: max-content;
  max-width: 240px;
  background: #1a1a1a;
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: normal;
  text-transform: none;
  text-align: left;
  padding: 10px 14px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 20;
}
.info-tip-text::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #1a1a1a;
}
.info-tip:hover .info-tip-text,
.info-tip:focus .info-tip-text {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Sor: szolgáltatás + m² egymás mellett */
.form-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(16px, 1.5vw, 58px);
}

/* Animáció */
.fp-section.active .kapc-hero   { animation: sectionIn .9s var(--ease) .15s both; }
.fp-section.active .kapc-form-col { animation: sectionIn .9s var(--ease) .28s both; }
.fp-section.active .kapc-info-col { animation: sectionIn .9s var(--ease) .42s both; }
.form-group { margin-bottom: clamp(16px, 1.25vw, 48px); }
.form-group label {
  display: block; font-size: clamp(8px, 0.469vw, 12px); font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 9px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid #ccc;
  padding: clamp(8px, 0.52vw, 20px) 0; font-family: 'Montserrat', sans-serif;
  font-size: clamp(12px, 0.677vw, 18px); font-weight: 300; color: var(--text);
  outline: none; -webkit-appearance: none;
  transition: border-color .25s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-bottom-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-gdpr {
  margin-top: clamp(16px, 1.25vw, 48px);
}
.form-gdpr-label {
  display: flex;
  align-items: flex-start;
  gap: clamp(8px, 0.625vw, 24px);
  cursor: pointer;
  font-size: clamp(10px, 0.573vw, 15px);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.55;
  user-select: none;
}
.form-gdpr-label input[type="checkbox"] {
  width: clamp(13px, 0.833vw, 32px);
  height: clamp(13px, 0.833vw, 32px);
  min-width: clamp(13px, 0.833vw, 32px);
  margin-top: 2px;
  accent-color: var(--green);
  cursor: pointer;
}
.form-gdpr-label a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: rgba(60,73,58,0.3);
  text-underline-offset: 2px;
  transition: text-decoration-color .2s;
}
.form-gdpr-label a:hover { text-decoration-color: var(--green); }
.form-submit { margin-top: clamp(20px, 1.67vw, 64px); }
.form-note {
  margin-top: clamp(14px, 1.1vw, 42px);
  font-size: clamp(11px, 0.729vw, 16px);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.form-note::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 0.55em;
  border-radius: 50%;
  background: var(--green);
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn-white {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(9px, 0.495vw, 13px); font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--white); border: 1px solid rgba(255,255,255,.5);
  padding: clamp(11px, 0.677vw, 26px) clamp(24px, 1.77vw, 68px);
  transition: background .3s, color .3s;
}
.btn-white:hover { background: var(--white); color: var(--green); }

.btn-dark {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(9px, 0.495vw, 13px); font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--text); border: 1px solid rgba(42,42,42,.45);
  padding: clamp(11px, 0.677vw, 26px) clamp(24px, 1.77vw, 68px);
  transition: background .3s, color .3s;
}
.btn-dark:hover { background: var(--text); color: var(--white); }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer-prelude {
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 0 6px;
  position: relative;
  flex-shrink: 0;
}
.footer-prelude::before {
  content: '';
  position: absolute;
  top: 50%;
  left: clamp(48px, 4.17vw, 160px);
  right: clamp(48px, 4.17vw, 160px);
  height: 1px;
  background: rgba(255,255,255,0.09);
}
.footer-prelude-logo {
  height: 32px;
  width: auto;
  opacity: 0.38;
  position: relative;
  z-index: 1;
  background: var(--green);
  padding: 0 28px;
}

footer {
  background: var(--green);
  padding: clamp(14px, 1.2vw, 46px) clamp(48px, 4.17vw, 160px) clamp(40px, 3.5vw, 134px);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.4fr 1fr;
  gap: clamp(40px, 5.5vw, 211px);
  align-items: center;
  position: relative;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 1.2vw, 46px);
}
.footer-tagline {
  font-size: clamp(11px, 0.677vw, 18px);
  font-weight: 300;
  color: rgba(255,255,255,0.42);
  line-height: 1.8;
  text-align: center;
}
.footer-col-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(8px, 0.469vw, 12px);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-bottom: clamp(16px, 1.4vw, 54px);
}
.footer-col p, .footer-col a, .footer-col > span:not(.footer-col-label) {
  font-size: clamp(10px, 0.625vw, 16px);
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 2.1;
  display: block;
  transition: color .25s;
}
.footer-col a:hover { color: var(--white); }
.footer-top-btn {
  position: absolute;
  bottom: clamp(16px, 1.35vw, 52px);
  right: clamp(20px, 1.5vw, 58px);
  color: rgba(255,255,255,.28);
  transition: color .3s, transform .3s;
  padding: 8px;
}
.footer-top-btn:hover {
  color: var(--white);
  transform: translateY(-4px);
}
.footer-social-col { display: flex; flex-direction: column; }
.footer-socials {
  display: flex;
  gap: clamp(8px, 0.8vw, 31px);
  align-items: center;
  margin-top: clamp(16px, 1.4vw, 54px);
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(36px, 2.6vw, 100px);
  height: clamp(36px, 2.6vw, 100px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 50%;
  color: rgba(255,255,255,0.48);
  transition: color .25s, border-color .25s, transform .25s;
  flex-shrink: 0;
}
.social-link:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.42);
  transform: translateY(-3px);
}
.footer-bottom {
  background: var(--green);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 16px clamp(48px, 4.17vw, 160px);
  font-size: clamp(9px, 0.521vw, 14px); font-weight: 300;
  color: rgba(255,255,255,.28); letter-spacing: .08em;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-legal {
  display: flex;
  gap: clamp(16px, 1.56vw, 60px);
}
.footer-legal a {
  font-size: clamp(9px, 0.521vw, 14px); font-weight: 300;
  color: rgba(255,255,255,.28); letter-spacing: .08em;
  transition: color .25s;
}
a.footer-credit {
  color: rgba(255,255,255,.28);
  text-decoration: none;
  letter-spacing: .08em;
  transition: color .25s;
}
a.footer-credit:hover { color: rgba(255,255,255,.7); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ═══════════════════════════════════════════════
   SCROLL ARROW
═══════════════════════════════════════════════ */
#scroll-arrow {
  position: fixed;
  bottom: clamp(20px, 1.67vw, 64px);
  left: clamp(24px, 2.08vw, 80px);
  z-index: 300;
  color: rgba(255,255,255,.7);
  opacity: 0;
  pointer-events: none;
}
#scroll-arrow.arrow--dark { color: rgba(42,42,42,.45); }
#scroll-arrow.arrow--visible {
  animation: arrowEnter .6s var(--ease) forwards,
             arrowBounce 1.8s ease-in-out .6s infinite;
}
#scroll-arrow.arrow--leaving {
  animation: none;
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity .2s, transform .2s;
}
@keyframes arrowEnter {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* ═══════════════════════════════════════════════
   GREEN CURTAIN
═══════════════════════════════════════════════ */
#fp-curtain {
  position: fixed;
  top: var(--nav-h); left: 0;
  width: 100%;
  height: calc(100vh - var(--nav-h));
  background: var(--green);
  z-index: 150;
  pointer-events: none;
  will-change: transform;
  transform: translateY(100%);
  display: flex; align-items: center; justify-content: center;
}
.curtain-logo {
  width: clamp(242px, 22.33vw, 857px);
  height: auto;
  display: block;
  opacity: 1;
  user-select: none;
  filter: brightness(0) invert(1)
          drop-shadow(0 0 18px rgba(255,255,255,0.9))
          drop-shadow(0 0 56px rgba(255,255,255,0.5))
          drop-shadow(0 0 120px rgba(255,255,255,0.25));
}

/* ═══════════════════════════════════════════════
   RIGHT-SIDE DOTS
═══════════════════════════════════════════════ */
#fp-dots {
  position: fixed;
  right: clamp(16px, 1.35vw, 52px);
  top: calc(var(--nav-h) + 50%);
  transform: translateY(-50%);
  z-index: 400;
  display: flex; flex-direction: column;
  gap: clamp(8px, 0.625vw, 24px); align-items: center;
}
.fp-dot {
  width: clamp(6px, 0.365vw, 14px); height: clamp(6px, 0.365vw, 14px);
  border-radius: 50%; padding: 0;
  transition: transform .3s var(--ease), background .3s, border-color .3s;
}

#fp-dots[data-theme="dark"] .fp-dot {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.35);
}
#fp-dots[data-theme="dark"] .fp-dot.active {
  background: var(--white);
  border-color: var(--white);
  transform: scale(1.65);
}

#fp-dots[data-theme="light"] .fp-dot {
  background: transparent;
  border: 1.5px solid rgba(60,73,58,.3);
}
#fp-dots[data-theme="light"] .fp-dot.active {
  background: var(--green);
  border-color: var(--green);
  transform: scale(1.65);
}

#fp-dots .fp-dot:hover { transform: scale(1.35); }
#fp-dots .fp-dot.active:hover { transform: scale(1.65); }

/* ═══════════════════════════════════════════════
   4(ÚJ). RÓLAM — split layout
═══════════════════════════════════════════════ */
.rolam-inner {
  display: grid;
  grid-template-columns: 1fr clamp(260px, 32vw, 1229px);
  grid-template-rows: auto 1fr;
  height: 100%;
  overflow: hidden;
  background: var(--cream);
}
.rolam-title {
  grid-column: 1;
  grid-row: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 104px);
  font-weight: 300;
  color: var(--green);
  letter-spacing: 0.04em;
  line-height: 1;
  position: relative;
  padding: clamp(44px, 4.5vw, 173px) clamp(52px, 5.2vw, 200px) clamp(14px, 1.3vw, 50px);
  background: var(--white);
}
.rolam-left {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2vw, 77px) clamp(52px, 5.2vw, 200px) clamp(44px, 4.5vw, 173px);
  overflow-y: auto;
  background: var(--white);
}
.rolam-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: clamp(36px, 3.5vw, 134px);
  height: 1px;
  background: var(--green);
  opacity: 0.3;
}
.rolam-accordions { flex: none; }
.acc-item { border-bottom: 1px solid rgba(60,73,58,0.12); }
.acc-item:first-child { border-top: 1px solid rgba(60,73,58,0.12); }
.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(15px, 1.35vw, 52px) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.acc-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 1.25vw, 33px);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1.2;
  transition: color 0.25s;
}
.acc-trigger:hover .acc-label,
.acc-item.open .acc-trigger .acc-label { color: var(--green); }
.acc-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(26px, 1.9vw, 73px);
  height: clamp(26px, 1.9vw, 73px);
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  border: 1.5px solid var(--green);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.acc-trigger:hover .acc-icon { background: #2e3829; border-color: #2e3829; }
.acc-item.open .acc-icon { background: var(--green); color: var(--white); }
.acc-icon svg { transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94); }
.acc-item.open .acc-icon svg { transform: rotate(180deg); }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.25,0.46,0.45,0.94);
}
.acc-item.open .acc-body { max-height: 300px; }
.acc-body p {
  font-size: clamp(13px, 0.833vw, 22px);
  font-weight: 300;
  line-height: 1.85;
  color: var(--text);
  padding-bottom: clamp(14px, 1.2vw, 46px);
  opacity: 0.75;
}
.acc-body p strong { font-weight: 600; color: var(--green); opacity: 1; }
.rolam-cta {
  margin-top: clamp(24px, 2.2vw, 84px);
  align-self: flex-start;
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.rolam-cta:hover { background: var(--text); border-color: var(--text); color: var(--white); }

/* Jobb oszlop — fotó + idézet */
.rolam-right {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: clamp(28px, 2.8vw, 108px) clamp(28px, 2.8vw, 108px) clamp(28px, 2.8vw, 108px) 0;
  overflow: hidden;
}
.rolam-photo-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.rolam-photo-wrap > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform .7s var(--ease);
  will-change: transform;
}
.rolam-right:hover .rolam-photo-wrap > img { transform: scale(1.04); }
.rolam-quote {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(64px, 5vw, 192px) clamp(24px, 2.3vw, 88px) clamp(22px, 1.8vw, 69px);
  background: linear-gradient(to top, rgba(18,18,18,0.88) 0%, rgba(18,18,18,0) 100%);
  quotes: none;
}
.rolam-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 3.6vw, 94px);
  line-height: 0.6;
  color: rgba(255,255,255,0.2);
  display: block;
  margin-bottom: -10px;
  font-weight: 300;
}
.rolam-quote-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.1vw, 21px);
  font-weight: 100;
  font-style: normal;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  letter-spacing: 0.01em;
  display: block;
}
.rolam-quote-cite {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(8px, 0.47vw, 12px);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: clamp(10px, 0.85vw, 33px);
}

.fp-section.active .rolam-title { animation: sectionIn .9s var(--ease) .15s both; }
.fp-section.active .rolam-left  { animation: sectionIn .9s var(--ease) .25s both; }
.fp-section.active .rolam-right { animation: sectionIn .9s var(--ease) .05s both; }

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (max 1100px)
═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  :root { --split: 30%; }
  .rolam-inner { grid-template-columns: 1fr 280px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 56px; --split: 0%; }
  /* nav-h override: mobilon mindig 56px, felülírja a clamp értéket */

  /* Header / nav */
  .page-header { justify-content: space-between; }
  .page-header-left {
    display: flex;
    align-items: center;
    width: auto;
    padding-left: 16px;
  }
  .page-header-left a {
    display: flex;
    align-items: center;
  }
  .page-header-left img {
    height: 26px;
    width: auto;
  }
  .nav-toggle { display: flex; }
  .page-header-nav {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--green);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 8px 0 20px;
    transform: translateY(-110%);
    transition: transform .4s var(--ease);
    pointer-events: none;
    z-index: 199;
    box-shadow: none;
  }
  .page-header-nav.open {
    transform: translateY(0);
    pointer-events: auto;
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
  }
  .page-header-nav a {
    font-size: 11px;
    padding: 16px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,.07);
    letter-spacing: .22em;
  }
  .page-header-nav a.active { border-bottom-color: rgba(255,255,255,.07); }
  .nav-dropdown-wrap { flex-direction: column; width: 100%; }
  .nav-dropdown-wrap > a::after { display: none; }
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    background: rgba(0,0,0,.12);
    padding: 0;
    width: 100%;
  }
  .nav-dropdown::before { display: none; }
  .nav-dropdown-item {
    font-size: 10px;
    padding: 12px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,.05);
    letter-spacing: .2em;
    color: rgba(255,255,255,.5);
  }

  /* Hero */
  .hero-inner { flex-direction: column; }
  .hero-left { width: 100%; flex-shrink: 0; height: 52%; }
  .hero-right { flex: 1; }
  .hero-block { width: 82%; }
  .hero-tagline { font-size: 15px; margin-top: 20px; padding-top: 20px; }

  /* Hero Secondary */
  .hero2-photo { order: -1; flex: none; height: 42%; }
  .hero2-text { width: 100%; height: 58%; order: 1; }
  .hero2-block { width: 84%; }
  .hero2-service p { font-size: 14px; }

  /* Fullbleed */
  .fullbleed-text { bottom: 28px; left: 24px; }
  .fullbleed-text h1 { font-size: 22px; }

  /* Csomagok */
  .pkg-inner { height: auto; padding: 28px 20px 40px; gap: 20px; }
  .pkg-title { font-size: 26px; }
  .pkg-desc { font-size: 12px; max-width: 100%; }
  .pkg-grid { grid-template-columns: 1fr; gap: 40px; flex: none; min-height: unset; overflow-y: visible; }
  .pkg-card-img { height: 180px; flex: none; }
  .pkg-card-body { padding: 14px 0 10px; gap: 8px; }
  .pkg-card-title { font-size: 18px; }
  .pkg-card-desc { font-size: 11px; }
  .pkg-card-cta { font-size: 9px; }
  /* Neked való (új) */
  .nv2-inner { grid-template-columns: 1fr; grid-template-rows: 36vh 1fr; row-gap: 20px; }
  .nv2-right { order: -1; padding: 14px 20px 0; }
  .nv2-left { padding: 20px 24px 28px; gap: 14px; justify-content: flex-start; overflow-y: auto; }
  .nv2-title { font-size: 22px; }
  .nv2-cta { align-self: center; margin-top: 8px; }
  .projektek2-inner { padding: 32px 20px 56px; overflow-y: auto; }
  .projektek2-title { font-size: 26px; }
  .projektek2-desc { font-size: 14px; }
  .proj-grid4 { grid-template-columns: 1fr; gap: 20px; }
  .proj-card-title { font-size: 20px; }
  .proj-card-desc { font-size: 12px; }
  .proj-card-body { padding: 14px 14px 18px; }
  .kisp-block { margin-top: 40px; padding-top: 32px; }
  .kisp-title { font-size: 24px; }
  .kisp-desc { font-size: 14px; }
  .kisp-list { gap: 44px; }
  .kisp-item { grid-template-columns: 1fr; gap: 18px; }
  .kisp-item:nth-child(even) .kisp-item-media { order: 0; }
  .kisp-item-title { font-size: 24px; }
  .kisp-item-desc { font-size: 13px; line-height: 1.75; }
  .kisp-item-link { margin-top: 16px; }

  /* Rólam (új) */
  .rolam-inner { display: flex; flex-direction: column; height: auto; }
  .rolam-title { grid-column: unset; grid-row: unset; font-size: 26px; padding: 20px 20px 12px; margin-bottom: 0; background: var(--cream); }
  .rolam-right { height: auto; flex-shrink: 0; grid-column: unset; grid-row: unset; padding: 0 20px; align-items: flex-start; justify-content: flex-start; overflow: hidden; background: var(--cream); }
  .rolam-photo-wrap { position: relative; overflow: hidden; max-width: 100%; }
  .rolam-photo-wrap > img { display: block; width: 100%; height: auto; max-height: none; transition: none; }
  .rolam-right:hover .rolam-photo-wrap > img { transform: none; }
  .rolam-quote { display: block; padding: 32px 16px 16px; }
  .rolam-quote-mark { font-size: 36px; line-height: 0.6; margin-bottom: -8px; }
  .rolam-quote-text { font-size: 14px; }
  .rolam-quote-cite { font-size: 9px; margin-top: 8px; }
  .rolam-left { flex: none; padding: 16px 20px 36px; overflow-y: visible; background: var(--cream); }
  .rolam-accordions { flex: none; min-height: unset; }
  .acc-item.open .acc-body { max-height: 600px; }
  .acc-label { font-size: 15px; }
  .acc-body p { font-size: 13px; }
  .rolam-cta { align-self: center; margin-top: 20px; }

  /* Vélemények */
  .vel2-inner { grid-template-columns: 1fr; gap: 28px; padding: 40px 22px 56px; align-content: center; overflow-y: auto; }
  .vel2-title { font-size: 30px; margin-bottom: 14px; }
  .vel2-desc { font-size: 14px; margin-bottom: 26px; max-width: none; }
  .vel2-kicker { margin-bottom: 16px; }
  .vel2-card-wrap { min-height: 0; }
  .vel2-card { padding: 26px 22px 26px; }
  .vel2-quote { font-size: 17px; margin-bottom: 22px; }
  .vel2-name { font-size: 19px; }
  .vel2-avatar { width: 48px; height: 48px; font-size: 18px; }
  .vel2-arrow { width: 44px; height: 44px; }

  /* Blog */
  .blog-inner { padding: 40px 20px 56px; justify-content: flex-start; overflow-y: auto; }
  .blog-header { margin-bottom: 28px; }
  .blog-title { font-size: 30px; }
  .blog-desc { font-size: 14px; }
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-card-title { font-size: 21px; }

  /* Kapcsolat (új) */
  .kapc-hero { padding: 36px 24px 28px; }
  .kapc-hero-title { font-size: 26px; }
  .kapc-hero-sub { font-size: 14px; }
  .kapc-grid { grid-template-columns: 1fr; }
  .kapc-form-col { padding: 36px 24px 44px; }
  .kapc-info-col { padding: 44px 24px 56px; gap: 32px; }
  .kapc-callback-sub { font-size: 22px; }
  .kapc-phone { font-size: 26px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Footer */
  footer { grid-template-columns: 1fr 1fr; padding: 28px 20px 48px; gap: 20px 24px; align-items: start; }
  .footer-brand { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 12px; }
  .logo-img--footer { height: 26px; width: auto; }
  .footer-tagline { font-size: 10px; line-height: 1.6; }
  .footer-col-label { font-size: 8px; margin-bottom: 8px; }
  .footer-col p, .footer-col a, .footer-col > span:not(.footer-col-label) { font-size: 11px; line-height: 1.9; }
  .footer-social-col { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 12px; }
  .footer-social-col .footer-col-label { margin-bottom: 0; }
  .footer-socials { margin-top: 0; gap: 8px; }
  .social-link { width: 30px; height: 30px; }
  .footer-sep { display: none; }
  .footer-bottom { padding: 12px 20px; font-size: 9px; flex-direction: column; gap: 8px; text-align: center; }

  /* Dots — navbár közepén, vízszintesen */
  #fp-dots {
    right: auto;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    height: var(--nav-h);
    flex-direction: row;
    gap: 8px;
    z-index: 205;
  }
  .fp-dot { width: 6px; height: 6px; }
  /* Mobilon a navbar mindig zöld → mindig fehér pötty kell */
  #fp-dots[data-theme="light"] .fp-dot {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.35);
  }
  #fp-dots[data-theme="light"] .fp-dot.active {
    background: var(--white);
    border-color: var(--white);
    transform: scale(1.65);
  }
  #scroll-arrow { bottom: 20px; left: 20px; }
}

/* ═══════════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════════ */
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lb-overlay.lb-open {
  opacity: 1;
  pointer-events: all;
}
.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(8px);
}
.lb-box {
  position: relative;
  z-index: 1;
  width: clamp(700px, 82vw, 3149px);
  display: flex;
  flex-direction: column;
}
.lb-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: clamp(12px, 1vw, 38px);
}
.lb-close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s, transform 0.3s;
  padding: clamp(6px, 0.5vw, 19px);
  flex-shrink: 0;
}
.lb-close svg { width: clamp(16px, 1.1vw, 42px); height: clamp(16px, 1.1vw, 42px); }
.lb-close:hover { color: #fff; transform: rotate(90deg); }
.lb-stage {
  display: flex;
  align-items: stretch;
}
.lb-center {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.lb-img-wrap {
  overflow: hidden;
  height: clamp(360px, 72vh, 1100px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.22s ease;
}
.lb-img.lb-fade { opacity: 0; }
.lb-arrow {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.35);
  padding: clamp(14px, 1.56vw, 60px);
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
}
.lb-arrow svg { width: clamp(22px, 1.5vw, 58px); height: clamp(22px, 1.5vw, 58px); }
.lb-arrow:hover { color: #fff; }
.lb-prev:hover { transform: translateX(-3px); }
.lb-next:hover { transform: translateX(3px); }
.lb-dots-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 0.6vw, 23px);
  padding-top: clamp(14px, 1.2vw, 46px);
}
.lb-dot {
  width: clamp(5px, 0.35vw, 13px);
  height: clamp(5px, 0.35vw, 13px);
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.lb-dot.active { background: #fff; transform: scale(1.5); }

/* ═══════════════════════════════════════════════
   PKG CARD IMAGE LIGHTBOX (egyszerű, csak X gomb)
═══════════════════════════════════════════════ */
.pkg-lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 9200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.pkg-lb-overlay.pkg-lb-open {
  opacity: 1;
  pointer-events: all;
}
.pkg-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(6px);
}
.pkg-lb-box {
  position: relative;
  z-index: 1;
  width: 60vw;
  height: 60vh;
  background: #fff;
}
.pkg-lb-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.pkg-lb-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  transition: color 0.2s, transform 0.3s;
}
.pkg-lb-close svg { width: 16px; height: 16px; }
.pkg-lb-close:hover { color: var(--green); transform: rotate(90deg); }
@media (max-width: 760px) {
  .pkg-lb-box { width: 88vw; height: 60vh; }
}

/* ═══════════════════════════════════════════════
   FORM SUCCESS / ERROR
═══════════════════════════════════════════════ */
.form-success {
  padding: clamp(28px, 2.5vw, 96px) 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 1.5vw, 39px);
  font-weight: 300;
  color: var(--green);
  line-height: 1.6;
}
.form-error-msg {
  margin-top: 12px;
  font-size: clamp(11px, 0.65vw, 17px);
  font-weight: 400;
  color: #b94040;
}

/* ═══════════════════════════════════════════════
   COOKIE CONSENT BAR
═══════════════════════════════════════════════ */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1e1e1e;
  color: rgba(255,255,255,.8);
  padding: 16px clamp(20px, 4vw, 154px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 77px);
  z-index: 9999;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(10px, 0.6vw, 16px);
  font-weight: 300;
  line-height: 1.65;
  transform: translateY(110%);
  transition: transform .4s ease .9s;
}
.cookie-bar.cookie-bar--visible { transform: translateY(0); }
.cookie-bar a { color: rgba(255,255,255,.55); text-decoration: underline; transition: color .2s; }
.cookie-bar a:hover { color: #fff; }
.cookie-bar-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-accept {
  padding: 9px 22px;
  background: var(--green); color: #fff;
  border: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(9px, 0.52vw, 14px); font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  transition: opacity .2s;
}
.cookie-btn-accept:hover { opacity: .82; }
.cookie-btn-reject {
  padding: 9px 22px;
  background: transparent;
  color: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.18);
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(9px, 0.52vw, 14px); font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  transition: color .2s, border-color .2s;
}
.cookie-btn-reject:hover { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.4); }
@media (max-width: 640px) {
  .cookie-bar { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ═══════════════════════════════════════════════
   PREFERS-REDUCED-MOTION
═══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
