/* ============================================================
   Csiszér Design – Prémium Belsőépítészet Landing Page
   ============================================================ */

/* ── Global reset (must come first to avoid browser defaults) ─ */
html, body { margin: 0; padding: 0; overflow-x: hidden; }

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --gold:        #a07800;
  --gold-light:  #c9a227;
  --gold-pale:   #e4d2a2;
  --gold-bg:     #f8f5f0;
  --dark:        #0f0f0f;
  --dark-2:      #1a1a1a;
  --dark-3:      #272727;
  --gray:        #717171;
  --gray-light:  #aaaaaa;
  --text:        #2a2a2a;
  --white:       #ffffff;
  --nav-h:       76px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & base ──────────────────────────────────────────── */
/* Scope reset to .lp-main only — site footer stays outside and keeps its own styles */
.lp-main *, .lp-main *::before, .lp-main *::after { box-sizing: border-box; margin: 0; padding: 0; }
.lp-page { font-family: 'work_sansregular', 'Work Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
.lp-main a { text-decoration: none; color: inherit; }
.lp-main ul { list-style: none; }
.lp-main img { max-width: 100%; display: block; }
.lp-main h1, .lp-main h2, .lp-main h3 { font-family: 'playfair_displayregular', 'Playfair Display', serif; }

/* ── Nav ──────────────────────────────────────────────────── */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.lp-nav.transparent { background: rgba(0,0,0,0.25); backdrop-filter: blur(2px); }
.lp-nav.scrolled {
  background: rgba(12,12,12,0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}

.lp-nav__logo {
  flex-shrink: 0;
  align-self: stretch;
  margin-left: -32px;
  margin-right: 28px;
}
.lp-nav__logo-img {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 22px 0 32px;
  background: #ffffff;
}
.lp-nav__logo-svg {
  height: 68px;
  width: auto;
  display: block;
}

.lp-nav__menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.lp-nav__menu a {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 8px 10px;
  position: relative;
  white-space: nowrap;
  transition: color var(--transition);
}
.lp-nav__menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10px; right: 10px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.lp-nav__menu a:hover,
.lp-nav__menu a.active {
  color: var(--gold-pale);
}
.lp-nav__menu a:hover::after,
.lp-nav__menu a.active::after { transform: scaleX(1); }

.lp-nav__social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 16px;
  flex-shrink: 0;
}
.lp-nav__social a {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(160,120,0,0.4);
  border-radius: 4px;
  color: rgba(255,255,255,0.6);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.lp-nav__social a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(160,120,0,0.1);
}
.lp-nav__social svg { width: 14px; height: 14px; }
.lp-nav__drawer-social svg { width: 14px; height: 14px; }

/* Mobile toggle */
.lp-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  background: none; border: none;
}
.lp-nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.8);
  transition: transform var(--transition), opacity var(--transition);
}
.lp-nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-nav__toggle.open span:nth-child(2) { opacity: 0; }
.lp-nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────────── */
.lp-hero {
  padding: 0;
  position: relative;
  height: 780px;
  background: url('/images/csiszar.jpg') 32% 15% / cover no-repeat;
  display: flex;
  align-items: center;
}
.lp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.08) 40%,
    rgba(0,0,0,0.65) 55%,
    rgba(0,0,0,0.82) 100%
  );
}
.lp-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 48px 0 0;       /* nincs centered max-width, jobbra igazodik, bal oldal szabad */
  display: flex;
  justify-content: flex-end;
}
.lp-hero__text {
  max-width: 660px;           /* szélesebb: jobban belóg a kép közepére */
  width: 58%;                 /* reszponzív arány */
  color: var(--white);
}
.lp-hero__pretitle {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-left: 2px solid var(--gold);
  padding-left: 14px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}
.lp-hero__title {
  font-size: clamp(22px, 2.6vw, 38px);
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.45s, transform 0.7s ease 0.45s;
}
.lp-hero__title em {
  font-style: normal;
  color: var(--gold-pale);
}
.lp-hero__intro {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.6s, transform 0.7s ease 0.6s;
}
.lp-hero__desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  border-left: 1px solid rgba(160,120,0,0.5);
  padding-left: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.75s, transform 0.7s ease 0.75s;
}
.lp-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.9s, transform 0.7s ease 0.9s;
}
.lp-hero.loaded .lp-hero__pretitle,
.lp-hero.loaded .lp-hero__title,
.lp-hero.loaded .lp-hero__intro,
.lp-hero.loaded .lp-hero__desc,
.lp-hero.loaded .lp-hero__actions { opacity: 1; transform: none; }

/* Scroll indicator */
.lp-hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.lp-hero__scroll-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 11px;
  position: relative;
}
.lp-hero__scroll-mouse::before {
  content: '';
  width: 4px; height: 7px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  animation: scrollDot 2s ease infinite;
}
@keyframes scrollDot {
  0%, 100% { opacity: 1; top: 6px; }
  60% { opacity: 0; top: 18px; }
}

/* ── Buttons ───────────────────────────────────────────────── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: 'work_sansregular', sans-serif;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color var(--transition);
}
.lp-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  z-index: 0;
}
.lp-btn > * { position: relative; z-index: 1; }
.lp-btn span { position: relative; z-index: 1; }

.lp-btn--gold {
  background: var(--gold);
  color: var(--white);
}
.lp-btn--gold::before { background: var(--gold-light); }
.lp-btn--gold:hover::before { transform: scaleX(1); }

.lp-btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(228,210,162,0.55);
}
.lp-btn--outline::before { background: rgba(160,120,0,0.18); }
.lp-btn--outline:hover { border-color: var(--gold-pale); }
.lp-btn--outline:hover::before { transform: scaleX(1); }

.lp-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Section base ──────────────────────────────────────────── */
.lp-section {
  padding: 100px 0;
}
.lp-section--dark {
  background: var(--dark-2);
  color: var(--white);
}
.lp-section--gray { background: var(--gold-bg); }
.lp-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}
.lp-section-header {
  text-align: center;
  margin-bottom: 70px;
}
.lp-section-tag {
  display: block;                     /* own line, not inline-block */
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.lp-section-title {
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.22;
  color: var(--text);
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}
.lp-section--dark .lp-section-title { color: var(--white); }
.lp-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 50px; height: 2px;
  background: var(--gold);
}
.lp-section-lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray);
  max-width: 640px;
  margin: 22px auto 0;
}
.lp-section--dark .lp-section-lead { color: rgba(255,255,255,0.6); }

/* ── Scroll reveal ─────────────────────────────────────────── */
.lp-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.lp-reveal.visible {
  opacity: 1;
  transform: none;
}
.lp-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.lp-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.lp-reveal-left.visible,
.lp-reveal-right.visible {
  opacity: 1;
  transform: none;
}
.lp-reveal-delay-1 { transition-delay: 0.1s; }
.lp-reveal-delay-2 { transition-delay: 0.2s; }
.lp-reveal-delay-3 { transition-delay: 0.3s; }
.lp-reveal-delay-4 { transition-delay: 0.4s; }
.lp-reveal-delay-5 { transition-delay: 0.5s; }

/* ── Why section (Miért) ───────────────────────────────────── */
.lp-why { }
.lp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 70px;
}
.lp-stat {
  background: var(--dark-2);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-stat::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.lp-stat:hover::before { transform: scaleX(1); }
.lp-stat__num {
  font-family: 'playfair_displayregular', serif;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.lp-stat__suffix {
  font-size: 22px;
  color: var(--gold-light);
}
.lp-stat__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* Why features grid */
.lp-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.lp-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 24px 30px;
  border: 1px solid #ede5d4;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.lp-feature:hover {
  border-color: var(--gold-pale);
  box-shadow: 0 8px 40px rgba(160,120,0,0.1);
  transform: translateY(-4px);
}
.lp-feature__icon {
  width: 52px; height: 52px;
  border-radius: 8px;
  background: var(--gold-bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.lp-feature:hover .lp-feature__icon { background: var(--gold); }
.lp-feature__icon svg {
  width: 26px; height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition);
}
.lp-feature:hover .lp-feature__icon svg { stroke: var(--white); }
.lp-feature__title {
  font-size: 13px;
  font-family: 'work_sanssemibold', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  line-height: 1.3;
}
.lp-feature__desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--gray);
}

/* ── Szemlélet section ─────────────────────────────────────── */
.lp-vision {
  position: relative;
  overflow: hidden;
}
.lp-vision::before {
  content: '"';
  position: absolute;
  top: -20px; left: 30px;
  font-family: 'playfair_displayregular', serif;
  font-size: 300px;
  color: rgba(160,120,0,0.04);
  line-height: 1;
  pointer-events: none;
}
.lp-vision__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lp-vision__text p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  margin-bottom: 20px;
}
.lp-vision__text p:last-child { margin-bottom: 0; }
.lp-vision__text p strong {
  color: var(--gold-pale);
  font-family: 'work_sanssemibold', sans-serif;
}
.lp-vision__highlight {
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.5;
  color: var(--white);
  font-family: 'playfair_displayregular', serif;
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 30px;
}
.lp-vision__image {
  position: relative;
}
.lp-vision__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.lp-vision__image::after {
  content: '';
  position: absolute;
  bottom: -14px; right: -14px;
  width: 50%; height: 50%;
  border: 2px solid var(--gold);
  z-index: -1;
}

/* ── Services section ──────────────────────────────────────── */
.lp-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.lp-service {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 36px;
  background: var(--white);
  border: 1px solid #ede5d4;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.lp-service::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transition: width 0.4s ease;
}
.lp-service:hover { 
  box-shadow: 0 12px 50px rgba(0,0,0,0.1);
  transform: translateY(-4px);
  border-color: var(--gold-pale);
}
.lp-service:hover::before { width: 100%; }
.lp-service__icon-wrap {
  width: 80px; height: 80px;
  background: var(--gold-bg);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.lp-service:hover .lp-service__icon-wrap { background: var(--gold); }
.lp-service__icon {
  width: 40px; height: 40px;
}
.lp-service__icon svg {
  width: 100%; height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition);
}
.lp-service:hover .lp-service__icon svg { stroke: var(--white); }
/* icon scale + slight rotate on hover for elegance */
.lp-service__icon svg {
  transition: stroke var(--transition), transform 0.4s ease;
}
.lp-service:hover .lp-service__icon svg {
  transform: scale(1.08);
}
.lp-service__body { }
.lp-service__title {
  font-size: 16px;
  font-family: 'work_sanssemibold', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 10px;
}
.lp-service__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
}

/* ── Gallery section ───────────────────────────────────────── */
.lp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.lp-gallery-grid--large .lp-gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.lp-gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--dark-3);
}
.lp-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.lp-gallery-item:hover img { transform: scale(1.07); }
.lp-gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.lp-gallery-item__overlay svg {
  width: 44px; height: 44px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.2;
}
.lp-gallery-item:hover .lp-gallery-item__overlay { opacity: 1; }

/* Empty gallery state */
.lp-gallery-empty {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255,255,255,0.4);
  font-size: 15px;
}

/* ── Process section (Hogyan) ──────────────────────────────── */
.lp-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.lp-process-grid::before {
  content: '';
  position: absolute;
  top: 42px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(to right, var(--gold-pale), var(--gold), var(--gold-pale));
}
.lp-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px 0;
  position: relative;
}
.lp-process-num {
  width: 82px; height: 82px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
  transition: border-color var(--transition), background var(--transition);
  flex-shrink: 0;
}
.lp-process-step:hover .lp-process-num {
  border-color: var(--gold);
  background: var(--gold);
}
.lp-process-num svg {
  width: 36px; height: 36px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition);
}
.lp-process-step:hover .lp-process-num svg { stroke: var(--white); }
.lp-process-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.lp-process-title {
  font-size: 15px;
  font-family: 'work_sanssemibold', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 12px;
}
.lp-process-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray);
}

/* ── CTA band ──────────────────────────────────────────────── */
.lp-cta-band {
  background: #f0eeea;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-cta-band::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  background: url('/images/premium-belsoepiteszet-landing/csd_logo.svg') left center / contain no-repeat;
  opacity: 0.07;
  pointer-events: none;
}
.lp-cta-band__content { position: relative; z-index: 1; }
.lp-cta-band__title {
  font-size: clamp(22px, 3vw, 34px);
  color: #1a1a1a;
  margin-bottom: 14px;
}
.lp-cta-band__lead {
  font-size: 15px;
  color: #555;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ── Form section ──────────────────────────────────────────── */
.lp-contact {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 100%);
}
.lp-form-wrapper {
  max-width: 840px;
  margin: 0 auto;
}
.lp-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(160,120,0,0.15);
  border-radius: 4px;
  padding: 50px 60px;
}
.lp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.lp-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-form-field--full { grid-column: 1 / -1; }
.lp-form label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.lp-form label .req { color: var(--gold); margin-left: 2px; }
.lp-form input,
.lp-form textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(160,120,0,0.2);
  border-radius: 3px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--white);
  font-family: 'work_sansregular', sans-serif;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  outline: none;
  resize: none;
}
.lp-form input::placeholder,
.lp-form textarea::placeholder { color: rgba(255,255,255,0.25); }
.lp-form input:focus,
.lp-form textarea:focus {
  border-color: var(--gold);
  background: rgba(160,120,0,0.06);
  box-shadow: 0 0 0 3px rgba(160,120,0,0.1);
}
.lp-form input.error,
.lp-form textarea.error {
  border-color: #c0392b;
  background: rgba(192,57,43,0.07);
}
.lp-form input.success,
.lp-form textarea.success {
  border-color: #27ae60;
  background: rgba(39,174,96,0.07);
}
.lp-form__error-msg {
  font-size: 11px;
  color: #e74c3c;
  min-height: 16px;
  padding-top: 2px;
}
.lp-form textarea { min-height: 130px; }
.lp-form__submit-row {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
.lp-btn--submit {
  background: var(--gold);
  color: var(--white);
  padding: 15px 48px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'work_sansregular', sans-serif;
}
.lp-btn--submit:hover { background: var(--gold-light); }
.lp-btn--submit:disabled { opacity: 0.6; cursor: not-allowed; }
.lp-btn--submit .spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.lp-btn--submit.loading .spinner { display: block; }
.lp-btn--submit.loading .btn-text { opacity: 0.7; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Modal ─────────────────────────────────────────────────── */
.lp-modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.lp-modal-bg.open { opacity: 1; pointer-events: all; }
.lp-modal {
  background: var(--dark-2);
  border: 1px solid rgba(160,120,0,0.25);
  border-radius: 6px;
  padding: 48px 52px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  transform: scale(0.92) translateY(14px);
  transition: transform 0.3s ease;
}
.lp-modal-bg.open .lp-modal { transform: scale(1) translateY(0); }
.lp-modal__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.lp-modal__icon--success { background: rgba(39,174,96,0.15); }
.lp-modal__icon--error   { background: rgba(192,57,43,0.15); }
.lp-modal__icon svg { width: 36px; height: 36px; }
.lp-modal__title {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 12px;
  font-family: 'playfair_displayregular', serif;
}
.lp-modal__msg {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 28px;
}
.lp-modal__close {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 12px 32px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'work_sansregular', sans-serif;
  transition: background var(--transition);
}
.lp-modal__close:hover { background: var(--gold-light); }

/* ── Lightbox ──────────────────────────────────────────────── */
.lp-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lp-lightbox.open { opacity: 1; pointer-events: all; }
.lp-lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  transform: scale(0.94);
  transition: transform 0.3s ease;
}
.lp-lightbox.open .lp-lightbox__img { transform: scale(1); }
.lp-lightbox__close {
  position: fixed;
  top: 20px; right: 28px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  font-size: 28px;
  line-height: 1;
  transition: color var(--transition), transform var(--transition);
  background: none; border: none;
}
.lp-lightbox__close:hover { color: var(--white); transform: rotate(90deg); }
.lp-lightbox__nav {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  color: rgba(255,255,255,0.8);
  transition: background var(--transition), color var(--transition);
  font-size: 22px;
  background: none; border: none;
}
.lp-lightbox__nav:hover { color: var(--gold-light); }
.lp-lightbox__prev { left: 20px; }
.lp-lightbox__next { right: 20px; }
.lp-lightbox__nav svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.lp-lightbox__counter {
  position: fixed;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
}

/* ── Footer bar ────────────────────────────────────────────── */
.lp-footer {
  background: var(--dark);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.lp-footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}
.lp-footer__copy a { color: var(--gold); }
.lp-footer__back {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition), border-color var(--transition);
}
.lp-footer__back:hover { color: var(--gold-pale); border-color: var(--gold); }
.lp-footer__back svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* ── Miért szekció logó ────────────────────────────────────── */
.lp-miert-logo {
  height: 200px;
  width: auto;
  display: block;
  margin: 0 auto 36px;
}

/* ── Hero desc below (≤992px) ─────────────────────────────── */
.lp-hero__desc-below {
  display: none;                       /* rejtve PC-n */
}
@media (max-width: 992px) {
  .lp-hero__desc { display: none; }    /* héró belsejéből eltünteti */
  .lp-hero__desc-below {
    display: block;
    background: var(--dark-2);
    padding: 20px 0;
    border-bottom: 1px solid rgba(160,120,0,0.15);
  }
  .lp-hero__desc-below p {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255,255,255,0.65);
    border-left: 2px solid var(--gold);
    padding-left: 14px;
    margin: 0;
  }
}

/* ── Mobile nav drawer ─────────────────────────────────────── */
.lp-nav__drawer {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  padding: 30px 40px 40px;
  border-top: 1px solid rgba(160,120,0,0.15);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 999;
}
.lp-nav__drawer.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.lp-nav__drawer ul { display: flex; flex-direction: column; gap: 4px; }
.lp-nav__drawer a {
  display: block;
  padding: 12px 0;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition), padding-left var(--transition);
}
.lp-nav__drawer a:hover { color: var(--gold-pale); padding-left: 6px; }
.lp-nav__drawer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.lp-nav__drawer-social a {
  border: none; padding: 0;
  width: 32px; height: 32px;
  border: 1px solid rgba(160,120,0,0.3);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: border-color var(--transition), color var(--transition);
}
.lp-nav__drawer-social a:hover { border-color: var(--gold); color: var(--gold-light); }

/* ── Responsive ────────────────────────────────────────────── */

/* 1380: single breakpoint — hamburger + hide social simultaneously */
@media (max-width: 1380px) {
  .lp-nav__menu   { display: none; }
  .lp-nav__social { display: none; }
  .lp-nav__toggle { display: flex; }
  .lp-nav__drawer { display: block; }
  .lp-nav { padding: 0 20px; }
  .lp-nav__logo { margin-left: -20px; } /* hamburger módban a kisebb paddinghoz igazít */
}

/* 1100: layout adjustments for tablet / small laptop */
@media (max-width: 1100px) {
  .lp-features { grid-template-columns: repeat(2, 1fr); }
  .lp-stats { grid-template-columns: repeat(2, 1fr); }
}

/* 900: layout adjustments for tablet */
@media (max-width: 900px) {
  .lp-container { padding: 0 24px; }
  .lp-section { padding: 70px 0; }
  .lp-hero { height: 620px; background-position: 28% 15%; }
  .lp-services-grid { grid-template-columns: 1fr; }
  .lp-process-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .lp-process-grid::before { display: none; }
  .lp-vision__grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-vision__image { display: none; }
  .lp-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-gallery-grid--large .lp-gallery-item:first-child { grid-column: span 2; }
  .lp-form { padding: 36px 28px; }
  .lp-form-grid { grid-template-columns: 1fr; }
  .lp-hero__content { padding: 0 24px; }
}

/* 800: tablet — hero title kisebb, scroll indicator el */
@media (max-width: 800px) {
  .lp-hero__title { font-size: 19px !important; line-height: 1.25 !important; }
  .lp-hero__scroll { display: none; }
}

/* 600: mobile */
@media (max-width: 600px) {
  .lp-hero {
    height: 480px;
    background-position: left 10%;
    align-items: flex-end;
  }
  .lp-hero__content { padding: 0 16px 24px; }
  .lp-hero__text { max-width: 100%; width: 100%; }
  .lp-hero__pretitle { font-size: 9px; letter-spacing: 0.2em; margin-bottom: 10px; padding-left: 10px; }
  .lp-hero__title { font-size: 16px; line-height: 1.22; margin-bottom: 10px; }
  .lp-hero__intro { font-size: 12px; line-height: 1.55; margin-bottom: 14px; }
  .lp-hero__actions { gap: 8px; }
  .lp-hero__actions .lp-btn { font-size: 10px; padding: 10px 18px; width: 100%; justify-content: center; }
  .lp-stats { grid-template-columns: repeat(2, 1fr); }
  .lp-features { grid-template-columns: 1fr; }
  .lp-service { grid-template-columns: 1fr; }
  .lp-service__icon-wrap { width: 60px; height: 60px; }
  .lp-process-grid { grid-template-columns: 1fr; }
  .lp-gallery-grid { grid-template-columns: 1fr 1fr; }
  .lp-form { padding: 28px 18px; }
  .lp-btn { width: 100%; justify-content: center; }
  .lp-container { padding: 0 16px; }
}
@media (max-width: 380px) {
  .lp-hero { height: 420px; background-position: left 10%; }
  .lp-hero__title { font-size: 14px; }
  .lp-hero__intro { font-size: 11px; }
}
