/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sage:        #7B9E76;
  --sage-deep:   #4E7249;
  --sage-light:  #A8C4A3;
  --sage-pale:   #EAF1E8;
  --rose:        #C4856A;
  --rose-pale:   #F5EAE5;
  --gold:        #C9A96E;
  --cream:       #FBF8F3;
  --cream-mid:   #F3EDE3;
  --cream-dark:  #E8DFD0;
  --text:        #2E2A25;
  --text-soft:   #6B6056;
  --white:       #FFFFFF;
  --border:      #DDD5C8;
  --shadow-sm:   0 2px 12px rgba(78,62,45,.07);
  --shadow-md:   0 6px 32px rgba(78,62,45,.12);
  --shadow-lg:   0 16px 56px rgba(78,62,45,.16);
  --radius-sm:   8px;
  --radius:      16px;
  --radius-lg:   24px;
  --transition:  .3s ease;
  --max-w:       1100px;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--text); background: var(--cream); line-height: 1.75; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.2; color: var(--text); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.2rem; }
p { color: var(--text-soft); }
p + p { margin-top: .8rem; }

/* ===== UTILITY ===== */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.75rem; }
.container--split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.section { padding: 6rem 0; position: relative; }
.section__tag { font-size: .75rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--sage-deep); margin-bottom: .6rem; display: flex; align-items: center; gap: .5rem; }
.section__tag::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--sage-deep); }
.section__head { text-align: center; max-width: 620px; margin: 0 auto 4rem; }
.section__head .section__tag { justify-content: center; }
.section__head .section__tag::before { display: none; }
.section__lead { margin-top: 1rem; font-size: 1.05rem; color: var(--text-soft); }
.lead { font-size: 1.1rem; color: var(--text); font-weight: 500; margin-bottom: 1rem; }

/* ===== WAVE DIVIDERS ===== */
.wave-divider { display: block; line-height: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; height: auto; }

/* ===== BOTANICAL DECO ===== */
.deco-leaf { position: absolute; pointer-events: none; z-index: 0; }
.deco-leaf--tl { top: -2rem; left: -3rem; width: 220px; height: 380px; }
.deco-leaf--br { bottom: -2rem; right: -3rem; width: 220px; height: 380px; transform: rotate(180deg); }
.deco-leaf svg { width: 100%; height: 100%; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 2rem; border-radius: 50px; font-size: .95rem; font-weight: 500; font-family: var(--font-body); transition: all var(--transition); cursor: pointer; text-decoration: none; }
.btn--primary { background: var(--sage-deep); color: var(--white); }
.btn--primary:hover { background: var(--sage); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(78,114,73,.35); }
.btn--ghost { background: rgba(255,255,255,.15); color: var(--white); border: 1.5px solid rgba(255,255,255,.4); }
.btn--ghost:hover { background: rgba(255,255,255,.25); }
.btn--ghost-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.5); }
.btn--ghost-white:hover { background: rgba(255,255,255,.12); }
.btn--outline { background: transparent; color: var(--sage-deep); border: 2px solid var(--sage-deep); }
.btn--outline:hover { background: var(--sage-deep); color: var(--white); }
.btn--rose { background: var(--rose); color: var(--white); }
.btn--rose:hover { background: #b87460; transform: translateY(-2px); }
.btn--full { width: 100%; justify-content: center; }

/* ===== NAV ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(251,248,243,.93); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); transition: box-shadow var(--transition); }
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 1.75rem; height: 70px; display: flex; align-items: center; position: relative; }
.nav__logo { font-family: var(--font-head); font-size: 1.2rem; color: var(--text); font-style: italic; display: flex; align-items: center; gap: .5rem; }
.nav__logo-leaf { display: flex; align-items: center; }
.nav__menu { display: flex; align-items: center; gap: 1rem; list-style: none; flex: 1; justify-content: center; }
.nav__menu a { font-size: .875rem; font-weight: 500; color: var(--text-soft); transition: color var(--transition); }
.nav__menu a:hover { color: var(--sage-deep); }
.nav__actions { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.nav__cta--mobile-only { display: none; }
.nav__cta { background: var(--sage-deep); color: var(--white) !important; padding: .55rem 1.4rem; border-radius: 50px; font-size: .85rem !important; }
.nav__cta:hover { background: var(--sage) !important; box-shadow: 0 4px 16px rgba(78,114,73,.3); }
/* Nav dropdown */
.nav__item--dropdown { position: relative; display: flex; align-items: center; }
.nav__dropdown-btn { font-size: .875rem; font-weight: 500; color: var(--text-soft); transition: color var(--transition); display: flex; align-items: center; gap: .3rem; padding: 0; background: none; border: none; cursor: pointer; }
.nav__dropdown-btn:hover, .nav__dropdown-btn.open { color: var(--sage-deep); }
.nav__dropdown { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: var(--white); border-radius: var(--radius); padding: 10px 0 .5rem; border: 1px solid var(--border); box-shadow: var(--shadow-md); min-width: 230px; z-index: 200; }
.nav__item--dropdown:hover .nav__dropdown { display: block; animation: fadeIn .15s ease; }
.nav__dropdown.open { display: block; }
@keyframes fadeIn { from{opacity:0;transform:translateX(-50%) translateY(-6px)} to{opacity:1;transform:translateX(-50%) translateY(0)} }
.nav__dropdown a { display: block; padding: .65rem 1.35rem; font-size: .875rem; color: var(--text-soft); transition: background var(--transition), color var(--transition); white-space: nowrap; }
.nav__dropdown a:hover { background: var(--cream); color: var(--sage-deep); }

.nav__phone-cta { white-space: nowrap; }
.nav__phone-mobile { display: none; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero { min-height: 100svh; display: flex; align-items: center; justify-content: center; background: url("images/hero-bg.jpg") center 30% / cover no-repeat; position: relative; overflow: hidden; padding-top: 70px; text-align: center; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(170deg, rgba(25,42,28,.78) 0%, rgba(45,70,40,.65) 60%, rgba(20,38,25,.55) 100%); }
.hero__content { position: relative; z-index: 2; max-width: 720px; padding: 2.5rem 1.75rem; }
.hero__tag { font-size: .75rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 1.25rem; display: flex; align-items: center; justify-content: center; gap: .75rem; }
.hero__tag::before, .hero__tag::after { content: ''; display: block; width: 30px; height: 1px; background: rgba(255,255,255,.4); }
.hero__title { font-family: var(--font-head); font-size: clamp(2.75rem, 7vw, 5rem); color: var(--white); margin-bottom: 2rem; line-height: 1.1; }
.hero__city { font-size: clamp(1.3rem, 3vw, 1.8rem); font-style: normal; color: rgba(255,255,255,.82); display: block; margin-top: .5rem; letter-spacing: .08em; font-weight: 400; }
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
/* Hero carousel */
.hero__carousel { margin: 2rem auto 0; max-width: 580px; }
.hero__carousel-inner { display: grid; }
.hero__carousel-item { grid-area: 1 / 1; display: flex; flex-direction: column; align-items: center; gap: .45rem; padding: 1.25rem 1.75rem; background: rgba(10,25,12,.62); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-radius: 14px; border: 1px solid rgba(255,255,255,.18); opacity: 0; transition: opacity .7s ease; pointer-events: none; text-align: center; }
.hero__carousel-item.active { opacity: 1; pointer-events: auto; }
.hero__carousel-stars { color: var(--gold); font-size: .9rem; letter-spacing: .1em; }
.hero__carousel-text { font-family: var(--font-body); font-size: clamp(.88rem, 2vw, .95rem); font-style: normal; color: rgba(255,255,255,.95); line-height: 1.6; margin: 0; font-weight: 400; }
.hero__carousel-author { font-size: .78rem; font-weight: 600; color: rgba(200,220,195,.8); letter-spacing: .06em; margin: 0; }
.hero__carousel-dots { display: flex; gap: .5rem; justify-content: center; margin-top: .75rem; }
.hero__carousel-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); transition: background .3s, transform .3s; display: inline-block; cursor: pointer; }
.hero__carousel-dots span.active { background: var(--white); transform: scale(1.35); }

/* ===== VERS SECTION ===== */
.vers-section { background: linear-gradient(160deg, #1E3B20 0%, #2A4D2C 50%, #1A3520 100%); padding: 5.5rem 0; position: relative; overflow: hidden; text-align: center; }
.vers-deco { position: absolute; pointer-events: none; width: 160px; height: 320px; }
.vers-deco--left { left: -2rem; top: 50%; transform: translateY(-50%); }
.vers-deco--right { right: -2rem; top: 50%; transform: translateY(-50%) scaleX(-1); }
.vers-deco svg { width: 100%; height: 100%; }
.vers-inner { max-width: 680px; margin: 0 auto; padding: 0 1.75rem; position: relative; z-index: 2; }
.vers-label { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 2rem; }
.vers-text { border: none; padding: 0; margin: 0; }
.vers-text p { font-family: var(--font-body); font-size: clamp(.95rem, 2vw, 1.1rem); font-style: normal; color: rgba(255,255,255,.92); line-height: 1.95; margin-bottom: 1.75rem; letter-spacing: .01em; }
.vers-text p:last-child { margin-bottom: 0; }
.vers-text p strong { color: rgba(200,235,195,.95); font-style: normal; }

/* ===== BEMUTATKOZÁS ===== */
.bemutatkozas { background: var(--white); overflow: hidden; }
.bemutatkozas__img { position: relative; }
.bemutatkozas__img-wrap { position: relative; display: inline-block; width: 100%; }
.bemutatkozas__photo { width: 100%; max-width: 420px; margin: 0 auto; border-radius: 58% 42% 55% 45% / 8% 8% 62% 58%; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 0%; box-shadow: var(--shadow-lg); border: 6px solid var(--white); outline: 3px solid var(--sage-pale); }
.bemutatkozas__img-wrap::before { content: ''; position: absolute; width: 90%; height: 90%; top: 5%; left: 5%; background: var(--sage-pale); border-radius: 58% 42% 55% 45% / 8% 8% 62% 58%; transform: translate(16px, 16px); z-index: -1; }
.bemutatkozas__badge { position: absolute; bottom: 2.5rem; right: 0; background: var(--sage-deep); color: var(--white); border-radius: var(--radius); padding: 1rem 1.25rem; text-align: center; box-shadow: var(--shadow-md); min-width: 100px; }
.bemutatkozas__badge strong { display: block; font-size: 1.75rem; font-family: var(--font-head); line-height: 1; }
.bemutatkozas__badge span { font-size: .72rem; opacity: .8; }
.bemutatkozas__text h2 { margin-bottom: 1.25rem; }
.bemutatkozas__text > p { margin-bottom: .8rem; }
.bemutatkozas__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.25rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.stat { text-align: center; }
.stat strong { display: block; font-family: var(--font-head); font-size: 2.2rem; color: var(--sage-deep); line-height: 1; margin-bottom: .25rem; }
.stat span { font-size: .78rem; color: var(--text-soft); font-weight: 500; letter-spacing: .04em; }

/* ===== MÓDSZEREK – SERVICE CARDS ===== */
.modszerek { background: var(--cream-mid); overflow: hidden; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; margin-bottom: 3rem; }

.service-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition); display: flex; flex-direction: column; }
.service-card:hover { box-shadow: var(--shadow-md); border-color: var(--sage-light); transform: translateY(-3px); }
.service-card.expanded { border-color: var(--sage); box-shadow: var(--shadow-md); transform: none; }
.service-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.service-card__icon { font-size: 2rem; line-height: 1; }
.service-card__num { font-family: var(--font-head); font-size: 2.5rem; color: var(--sage-pale); font-weight: 700; line-height: 1; }
.service-card h3 { margin-bottom: .3rem; color: var(--text); font-size: 1.25rem; }
.service-card__sub { font-size: .75rem; font-weight: 600; color: var(--sage); letter-spacing: .05em; text-transform: uppercase; margin-bottom: .85rem; display: block; }
.service-card > p { font-size: .92rem; }
.service-card__tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.service-card__tags span { background: var(--sage-pale); color: var(--sage-deep); font-size: .72rem; font-weight: 600; padding: .3rem .8rem; border-radius: 50px; }

.service-card__toggle { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.25rem; font-size: .82rem; font-weight: 600; color: var(--sage-deep); padding: .4rem 0; background: none; border: none; cursor: pointer; transition: color var(--transition); }
.service-card__toggle:hover { color: var(--sage); }
.service-card__toggle .arrow { display: inline-block; transition: transform var(--transition); font-style: normal; }
.service-card.expanded .service-card__toggle .arrow { transform: rotate(180deg); }

.service-card__details { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.service-card.expanded .service-card__details { max-height: 3000px; }

.service-card__details-inner { padding-top: 1.5rem; border-top: 1px solid var(--border); margin-top: .5rem; }
.service-card__details-inner h4 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--sage-deep); margin: 1.5rem 0 .6rem; font-family: var(--font-body); }
.service-card__details-inner h4:first-child { margin-top: 0; }
.service-card__details-inner p { font-size: .88rem; }
.service-card__details-inner p + p { margin-top: .5rem; }
.service-card__details-inner ul { list-style: none; padding: 0; margin: .2rem 0; }
.service-card__details-inner ul li { font-size: .85rem; color: var(--text-soft); padding: .3rem 0 .3rem 1.5rem; position: relative; line-height: 1.6; }
.service-card__details-inner ul li::before { content: '✦'; position: absolute; left: 0; font-size: .5rem; color: var(--sage); top: .55rem; }

.sub-method { background: var(--cream); border-radius: var(--radius-sm); padding: 1rem 1.25rem; margin: .85rem 0; border-left: 3px solid var(--sage-light); }
.sub-method strong { display: block; font-size: .88rem; color: var(--sage-deep); margin-bottom: .4rem; font-family: var(--font-body); }
.sub-method p { margin: 0 !important; font-size: .84rem !important; }

.services-cta { text-align: center; background: linear-gradient(135deg, var(--sage-pale) 0%, var(--rose-pale) 100%); border-radius: var(--radius-lg); padding: 3rem; border: 1px solid var(--cream-dark); }
.services-cta p { color: var(--text-soft); margin-bottom: .5rem; }
.services-cta h3 { font-size: 1.5rem; color: var(--text); margin-bottom: 1.5rem; }

/* ===== PHOTO STRIPS ===== */
.photo-strip { width:100%; height:520px; background-size:cover; background-position:center; position:relative; overflow:hidden; }
.photo-strip__fade { position:absolute; left:0; right:0; height:30%; z-index:1; pointer-events:none; }
.photo-strip__fade--top { top:0; }
.photo-strip__fade--bottom { bottom:0; }
@media (max-width:640px) { .photo-strip { height:300px; } }

/* ===== MIBEN SEGÍTHET ===== */
.segitseg { background: image-set(url("images/havasi-gyopar.webp") type("image/webp"), url("images/havasi-gyopar.jpg") type("image/jpeg")) center/cover no-repeat; position: relative; }
.segitseg::before { content:''; position:absolute; inset:0; background:rgba(245,234,229,.91); z-index:0; }
.segitseg .container { position:relative; z-index:1; }
.problems { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.problem { background: var(--white); border-radius: var(--radius); padding: 1.75rem 1.25rem; border: 1px solid var(--border); text-align: center; transition: all var(--transition); }
.problem:hover { border-color: var(--rose); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.problem__icon { font-size: 2.25rem; margin-bottom: .85rem; }
.problem p { font-size: .88rem; color: var(--text-soft); margin: 0; line-height: 1.6; }
.segitseg__cta { text-align: center; margin-top: 3rem; }

/* ===== GALÉRIA ===== */
.galeria { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 1.25rem; }
.gallery-item { grid-column: span 2; }
.gallery-item:nth-child(9) { grid-column: 3 / 5; }
.gallery-item:nth-child(10) { grid-column: 5 / 7; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; display: block; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,50,30,.75) 0%, transparent 60%); display: flex; align-items: flex-end; padding: 1rem; opacity: 0; transition: opacity var(--transition); }
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay span { color: var(--white); font-size: .85rem; font-weight: 500; }

/* ===== VÉLEMÉNYEK ===== */
.velemenyek { background: var(--sage-deep); }
.reviews__only5 { text-align: center; margin: -1.5rem auto 2rem; display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 50px; padding: .4rem 1.2rem; font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.85); letter-spacing: .04em; width: fit-content; left: 50%; position: relative; transform: translateX(-50%); }
.reviews { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.5rem; margin-bottom: 2.75rem; }
.review { grid-column: span 2; }
.review:nth-child(10) { grid-column: 2 / 4; }
.review:nth-child(11) { grid-column: 4 / 6; }
.review { background: rgba(255,255,255,.07); border-radius: var(--radius); padding: 1.75rem; border: 1px solid rgba(255,255,255,.1); position: relative; transition: background var(--transition), transform var(--transition), box-shadow var(--transition); display: flex; flex-direction: column; }
.review:hover { background: rgba(255,255,255,.13); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.25); }
.review__header { display: flex; align-items: center; justify-content: space-between; gap: .7rem; margin-bottom: 1rem; }
.review__meta { flex: 1; min-width: 0; }
.review__author { font-weight: 600; color: rgba(255,255,255,.97); font-size: .92rem; }
.review__service { font-size: .66rem; color: rgba(168,196,163,.9); text-transform: uppercase; letter-spacing: .1em; margin-top: .1rem; }
.review__stars { color: var(--gold); font-size: .82rem; letter-spacing: .08em; flex-shrink: 0; }
.review__highlight { display: block; font-family: var(--font-head); font-size: 1.02rem; font-style: italic; color: rgba(255,255,255,.97); margin-bottom: .6rem; line-height: 1.45; flex: 1; }
.review__body { font-size: .88rem; color: rgba(255,255,255,.78); margin: 0; line-height: 1.7; }
.reviews__more { text-align: center; }

/* ===== KAPCSOLAT ===== */
.kapcsolat { background: var(--cream-mid); }
.kapcsolat__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 768px) {
  .kapcsolat__inner { grid-template-columns: 1fr; }
  .kapcsolat__form { margin-top: 2.5rem; }
}
.kapcsolat__info h2 { margin: .5rem 0 1rem; }
.kapcsolat__info > p { margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.35rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item__icon { font-size: 1.3rem; flex-shrink: 0; }
.contact-item strong { display: block; font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--sage-deep); margin-bottom: .15rem; }
.contact-item p, .contact-item a { font-size: .93rem; color: var(--text-soft); margin: 0; }
.contact-item a:hover { color: var(--sage-deep); }
.price-badge { display: inline-flex; align-items: center; gap: .5rem; background: var(--sage-deep); color: var(--white); padding: .6rem 1.25rem; border-radius: 50px; font-size: .9rem; font-weight: 500; margin-top: 1.5rem; }

.form { background: var(--white); border-radius: var(--radius-lg); padding: 2.25rem; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.form__title { font-size: 1.35rem; margin-bottom: 1.75rem; color: var(--text); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__group { margin-bottom: 1.25rem; }
.form__group label { display: block; font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: .45rem; letter-spacing: .02em; }
.form__group input, .form__group select, .form__group textarea { width: 100%; padding: .8rem 1.1rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .9rem; color: var(--text); background: var(--cream); transition: border-color var(--transition), background var(--transition); outline: none; appearance: none; }
.form__group input:focus, .form__group select:focus, .form__group textarea:focus { border-color: var(--sage); background: var(--white); }
.form__group textarea { resize: vertical; min-height: 120px; }
.form__note { font-size: .73rem; color: var(--text-soft); margin-top: .85rem; text-align: center; line-height: 1.5; }
.form__checkbox { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: 1.25rem; }
.form__checkbox input[type="checkbox"] { flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--sage); cursor: pointer; }
.form__checkbox label { font-size: .82rem; color: var(--text-soft); line-height: 1.5; cursor: pointer; }
.form__checkbox label a { color: var(--sage-deep); text-decoration: underline; text-underline-offset: 2px; }
/* adatkezelési tájékoztató oldal */
.adatkezelesi-doc { max-width: 780px; }
.adatkezelesi-doc h2 { font-family: var(--font-heading); font-size: 1.25rem; color: var(--sage-deep); margin: 2.5rem 0 .75rem; }
.adatkezelesi-doc h2:first-of-type { margin-top: 1rem; }
.adatkezelesi-doc p { line-height: 1.8; color: var(--text); margin-bottom: 1rem; }
.adatkezelesi-doc ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.adatkezelesi-doc ul li { line-height: 1.8; color: var(--text); margin-bottom: .35rem; }
.adatkezelesi-doc a { color: var(--sage-deep); }
.adatkezelesi-updated { font-size: .8rem; color: var(--text-soft); margin-bottom: 2rem; }
.adatkezelesi-table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: .9rem; }
.adatkezelesi-table td { padding: .55rem .75rem; border: 1px solid var(--border); vertical-align: top; line-height: 1.6; }
.adatkezelesi-table td:first-child { width: 160px; background: var(--cream); }
.form__thanks { text-align: center; padding: 3rem 1.5rem; }
.form__thanks-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--sage); color: #fff; font-size: 1.8rem; line-height: 64px; margin: 0 auto 1.25rem; }
.form__thanks h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--sage-deep); margin-bottom: .75rem; }
.form__thanks p { color: var(--text-soft); line-height: 1.7; }
.map-wrap { margin-top: 3.5rem; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }

/* ===== LIGHTBOX ===== */
.lightbox { display:none; position:fixed; inset:0; z-index:600; background:rgba(0,0,0,.93); align-items:center; justify-content:center; }
.lightbox.open { display:flex; animation:lbIn .2s ease; }
@keyframes lbIn { from{opacity:0} to{opacity:1} }
.lightbox__stage { display:flex; flex-direction:column; align-items:center; gap:1rem; width:min(92vw,900px); height:min(88vh,720px); }
.lightbox__img { flex:1; width:100%; min-height:0; object-fit:contain; border-radius:10px; box-shadow:0 12px 60px rgba(0,0,0,.7); display:block; transition:opacity .2s; }
.lightbox__caption { color:rgba(255,255,255,.78); font-size:.9rem; text-align:center; max-width:640px; font-style:italic; line-height:1.55; padding:0 1rem; }
.lightbox__close { position:fixed; top:1.1rem; right:1.3rem; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2); color:white; font-size:1.2rem; cursor:pointer; z-index:601; opacity:.8; transition:all .2s; width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; }
.lightbox__close:hover { opacity:1; background:rgba(255,255,255,.22); }
.lightbox__nav { position:fixed; top:50%; transform:translateY(-50%); background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.18); color:white; font-size:2.4rem; cursor:pointer; padding:.05rem .55rem .15rem; border-radius:10px; z-index:601; opacity:.7; transition:all .2s; line-height:1; user-select:none; }
.lightbox__nav:hover { opacity:1; background:rgba(255,255,255,.2); }
.lightbox__nav--prev { left:.75rem; }
.lightbox__nav--next { right:.75rem; }
.lightbox__counter { position:fixed; bottom:1.1rem; left:50%; transform:translateX(-50%); color:rgba(255,255,255,.4); font-size:.75rem; letter-spacing:.12em; }

/* ===== BLOG ===== */
.blog-hero { background: linear-gradient(135deg, var(--sage-deep) 0%, #2f4d2a 100%); padding: 8rem 1.75rem 5rem; text-align: center; }
.blog-hero__inner { max-width: 620px; margin: 0 auto; }
.blog-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: .75rem; line-height: 1.15; }
.blog-hero__lead { color: rgba(255,255,255,.72); font-size: 1.05rem; margin: 0; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card__img-wrap { overflow: hidden; height: 210px; display: block; }
.blog-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.blog-card:hover .blog-card__img { transform: scale(1.04); }
.blog-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card__cat { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--sage-deep); margin-bottom: .6rem; display: block; }
.blog-card__title { font-family: var(--font-head); font-size: 1.1rem; color: var(--text); line-height: 1.35; margin-bottom: .75rem; }
.blog-card__title a { color: inherit; }
.blog-card__title a:hover { color: var(--sage-deep); }
.blog-card__excerpt { font-size: .88rem; color: var(--text-soft); line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.blog-card__footer { display: flex; align-items: center; justify-content: space-between; font-size: .78rem; color: var(--text-soft); border-top: 1px solid var(--border); padding-top: .9rem; margin-top: auto; }
.blog-card__author { display: flex; align-items: center; gap: .5rem; }
.blog-card__avatar { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; }
.blog-card__read { color: var(--sage-deep); font-weight: 600; font-size: .82rem; }
.blog-card__read:hover { color: var(--sage); }
.nav__active { color: var(--sage-deep) !important; font-weight: 600 !important; }

/* ===== BREADCRUMB ===== */
.breadcrumb { background: var(--cream-mid); border-bottom: 1px solid var(--border); padding: .55rem 0; font-size: .78rem; margin-top: 70px; }
.breadcrumb__list { max-width: var(--max-w); margin: 0 auto; padding: 0 1.75rem; display: flex; align-items: center; gap: .35rem; list-style: none; flex-wrap: wrap; }
.breadcrumb__item { display: flex; align-items: center; color: var(--text-soft); }
.breadcrumb__item a { color: var(--sage-deep); font-weight: 500; transition: color var(--transition); }
.breadcrumb__item a:hover { color: var(--sage); text-decoration: underline; }
.breadcrumb__item + .breadcrumb__item::before { content: '›'; margin-right: .35rem; color: var(--border); font-size: .9rem; }
/* Subhero already has padding-top:70px — reset when breadcrumb takes that role */
.breadcrumb + .subhero { padding-top: 1rem; }
/* Post-wrap breadcrumb sits inside padding — no margin-top needed */
.post-wrap .breadcrumb { margin-top: 0; background: none; border: none; padding: 0 0 1.25rem; }
.post-wrap .breadcrumb__list { padding: 0; }

/* Blog post */
.post-wrap { max-width: 780px; margin: 0 auto; padding: 5.5rem 1.75rem 6rem; }
.post__back { display: inline-flex; align-items: center; gap: .4rem; font-size: .85rem; color: var(--sage-deep); font-weight: 500; margin-bottom: 2rem; }
.post__back:hover { color: var(--sage); }
.post__cat { font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--sage-deep); margin-bottom: .75rem; display: block; }
.post__title { font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.2; margin-bottom: 1.25rem; color: var(--text); }
.post__meta { display: flex; align-items: center; gap: 1rem; font-size: .85rem; color: var(--text-soft); margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.post__meta-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.post__meta strong { color: var(--text); }
.post__readtime { background: var(--sage-pale); color: var(--sage-deep); font-size: .75rem; font-weight: 600; padding: .25rem .7rem; border-radius: 50px; }
.post__hero-img { width: 100%; border-radius: var(--radius-lg); margin-bottom: 2.5rem; aspect-ratio: 1200/630; object-fit: cover; }
.post__toc { background: var(--sage-pale); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-bottom: 2.5rem; border: 1px solid rgba(123,158,118,.2); }
.post__toc-title { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--sage-deep); margin-bottom: .75rem; }
.post__toc ol { padding-left: 1.25rem; margin: 0; }
.post__toc li { font-size: .88rem; color: var(--text-soft); margin-bottom: .35rem; }
.post__toc a { color: var(--sage-deep); }
.post__toc a:hover { text-decoration: underline; }
.post__body { font-size: .97rem; line-height: 1.85; }
.post__body p { color: var(--text-soft); margin-bottom: 1.25rem; }
.post__body h2 { font-size: 1.35rem; color: var(--text); margin: 2.5rem 0 .9rem; scroll-margin-top: 90px; }
.post__body h3 { font-size: 1.05rem; color: var(--text); margin: 1.75rem 0 .65rem; font-family: var(--font-body); font-weight: 700; scroll-margin-top: 90px; }
.post__body blockquote { border-left: 3px solid var(--sage); padding: 1rem 1.5rem; margin: 2rem 0; background: var(--sage-pale); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.post__body blockquote p { color: var(--text); font-style: italic; margin: 0; }
.post__body ul, .post__body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post__body li { color: var(--text-soft); margin-bottom: .4rem; line-height: 1.7; }
.post__body strong { color: var(--text); }
.post__source { margin-top: 3rem; padding: 1.25rem 1.5rem; background: var(--cream-mid); border-radius: var(--radius-sm); font-size: .82rem; color: var(--text-soft); border-left: 3px solid var(--sage-light); }
.post__source strong { color: var(--text); }
.post__cta { margin-top: 4rem; padding: 3rem; background: linear-gradient(135deg, var(--sage-pale), var(--rose-pale)); border-radius: var(--radius-lg); text-align: center; border: 1px solid var(--cream-dark); }
.post__cta h2 { font-size: 1.6rem; margin-bottom: .75rem; }
.post__cta p { margin-bottom: 1.5rem; }
@media (max-width: 640px) { .post-wrap { padding: 5rem 1.25rem 4rem; } .post__cta { padding: 2rem 1.25rem; } }

/* ===== FOOTER ===== */
.footer { background: #1E2A1F; color: rgba(255,255,255,.65); padding: 3.5rem 0 1.5rem; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1.3fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer__logo { display: flex; align-items: center; gap: .5rem; margin-bottom: .6rem; }
.footer__logo strong { color: var(--white); font-family: var(--font-head); font-size: 1.15rem; font-style: italic; }
.footer__brand p { font-size: .84rem; line-height: 1.7; }
.footer__col-title { font-size: .7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: .4rem; display: block; }
.footer__links, .footer__contact { display: flex; flex-direction: column; gap: .5rem; }
.footer__links a, .footer__contact a { font-size: .84rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer__links a:hover, .footer__contact a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.25rem; text-align: center; font-size: .78rem; color: rgba(255,255,255,.3); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .container--split { grid-template-columns: 1fr; gap: 3rem; }
  .bemutatkozas__img { order: -1; }
  .bemutatkozas__photo { max-width: 320px; }
  .services-grid { grid-template-columns: 1fr; }
  .problems { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { grid-column: span 1; }
  .gallery-item:nth-child(9), .gallery-item:nth-child(10) { grid-column: span 1; }
  .reviews { grid-template-columns: 1fr 1fr; }
  .review { grid-column: span 1; }
  .review:nth-child(4), .review:nth-child(5) { grid-column: span 1; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__modszerek { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  /* Header bar */
  .nav__inner { padding: 0 12px; display: flex; align-items: center; gap: 0; }
  .nav__logo { flex: 1 1 0; min-width: 0; font-size: .9rem; overflow: hidden; white-space: nowrap; }
  .nav__phone-mobile { display: none; }
  .nav__toggle { display: flex; flex: 0 0 auto; }
  .nav__phone-cta { display: none; }
  .nav__actions { display: none; }
  /* Mobile menu panel */
  .nav__menu { display: none; flex-direction: column; align-items: center; gap: 1.25rem; position: fixed; top: 70px; left: 0; right: 0; transform: none; background: var(--white); padding: 2rem 1.75rem; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); z-index: 99; text-align: center; }
  .nav__menu.open { display: flex; }
  .nav__cta--mobile-only { display: inline-flex; }
  .nav__item--dropdown { flex-direction: column; align-items: center; width: 100%; }
  .nav__dropdown-btn { justify-content: center; font-size: .875rem; width: 100%; }
  .nav__dropdown { position: static; transform: none; box-shadow: none; border: none; border-top: 1px solid var(--sage-pale); margin-top: .5rem; padding: .25rem 0; border-radius: 0; background: none; min-width: unset; animation: none; text-align: center; width: 100%; }
  .nav__dropdown.open { display: block; }
  .nav__dropdown a { padding: .5rem 1.25rem; text-align: center; }
  .nav__cta { display: inline-flex; width: fit-content; }
  .hero__title { font-size: 2.75rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .problems { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
  .form__row { grid-template-columns: 1fr; }
  .vers-deco { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== GYIK ===== */
.gyik { background: var(--cream); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; transition: border-color var(--transition), box-shadow var(--transition); }
.faq-item.open { border-color: var(--sage); box-shadow: var(--shadow-sm); }
.faq-item__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; font-size: .98rem; font-weight: 600; color: var(--text); text-align: left; background: none; border: none; cursor: pointer; transition: color var(--transition); }
.faq-item__q:hover { color: var(--sage-deep); }
.faq-item.open .faq-item__q { color: var(--sage-deep); }
.faq-item__icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--sage-pale); color: var(--sage-deep); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 400; line-height: 1; transition: transform var(--transition), background var(--transition); }
.faq-item.open .faq-item__icon { transform: rotate(45deg); background: var(--sage-deep); color: var(--white); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-item__a { max-height: 300px; }
.faq-item__a p { padding: 0 1.5rem 1.25rem; font-size: .93rem; color: var(--text-soft); line-height: 1.75; margin: 0; }

/* Next-section floating button */
#nextSectionBtn {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sage-deep); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(78,114,73,.35);
  opacity: 1; transition: opacity .4s, transform .2s, box-shadow .2s;
  z-index: 90;
  animation: nsb-bounce 2s ease-in-out infinite;
}
#nextSectionBtn:hover { box-shadow: 0 6px 22px rgba(78,114,73,.5); transform: translateX(-50%) scale(1.08); animation: none; }
#nextSectionBtn.hidden { opacity: 0; pointer-events: none; }
@keyframes nsb-bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(5px); }
}
