/* Brand color tokens — override via Live Edit Style Editor */
:root {
  --primary-color: #C8102E;
  --accent-color: #C8102E;
  --bg-color: #ffffff;
  --text-color: #1A1A1A;
}

/* inlined from ZIP: styles.css?v=2 */
/* ========== RK Tető — stílusok ========== */
:root {
  --primary: #C8102E;
  --primary-dark: #A60D26;
  --dark: #1A1A1A;
  --gray: #6B7280;
  --light: #F5F5F5;
  --light-2: #FAFAFA;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --section-py: 100px;
  --container: 1200px;
  --display: 'Outfit', system-ui, -apple-system, Segoe UI, sans-serif;
  --body: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 6vw, 64px); line-height: 1.05; font-weight: 700; }
h2 { font-size: clamp(30px, 4vw, 40px); line-height: 1.15; }
h3 { font-size: 22px; line-height: 1.3; font-weight: 600; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--body); cursor: pointer; border: none; background: none; }
ul { margin: 0; padding: 0; list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.section-head { display: flex; flex-direction: column; gap: 14px; margin-bottom: 56px; max-width: 720px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; align-items: center; }

.eyebrow {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--primary); }
.lead { font-size: 18px; color: var(--gray); line-height: 1.6; max-width: 640px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  font-family: var(--body);
}
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 6px 20px rgba(200,16,46,0.25); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(200,16,46,0.32); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.65); }
.btn-ghost { background: var(--white); color: var(--dark); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--dark); }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 32px;
}
.logo { display: inline-flex; align-items: center; gap: 14px; color: var(--white); transition: color 0.25s ease; text-decoration: none; min-width: 0; }
.site-header.scrolled .logo { color: var(--dark); }
.logo-mark {
  height: 48px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  transition: filter 0.25s ease;
}
/* On the dark hero, make the black silhouette parts white for contrast (red stays red via mix). */
.site-header:not(.scrolled) .logo-mark {
  filter: brightness(0) invert(1);
}
.site-header.scrolled .logo-mark {
  filter: none;
}
.mobile-menu .logo-mark { filter: brightness(0) invert(1); height: 44px; }
.site-footer .logo-mark { filter: brightness(0) invert(1); height: 44px; max-width: 160px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong { font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.logo-text small { font-family: var(--body); font-weight: 500; font-size: 11px; color: rgba(255,255,255,0.7); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 3px; }
.site-header.scrolled .logo-text small { color: var(--gray); }

nav.primary ul { display: flex; align-items: center; gap: 32px; }
nav.primary a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.site-header.scrolled nav.primary a { color: var(--dark); }
nav.primary a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
nav.primary a:hover { color: var(--primary); }
nav.primary a:hover::after { transform: scaleX(1); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 14.5px;
  transition: background 0.2s ease, transform 0.15s ease;
}
.header-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }
.header-cta svg { width: 16px; height: 16px; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 8px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  align-items: center;
  justify-content: center;
}
.site-header.scrolled .menu-toggle { background: var(--light); color: var(--dark); }
.menu-toggle svg { width: 22px; height: 22px; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  color: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 100px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/photo-1518780664697-55e3ad937233-0bd043.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(20,20,20,0.92) 0%, rgba(20,20,20,0.7) 45%, rgba(20,20,20,0.4) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 760px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(200,16,46,0.25);
}
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 .accent {
  color: var(--white);
  background: linear-gradient(180deg, transparent 60%, rgba(200,16,46,0.85) 60%);
  padding: 0 6px;
  display: inline-block;
}
.hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 40px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 64px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.18);
  max-width: 720px;
}
.hero-stats .stat-num {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stats .stat-label { font-size: 13px; color: rgba(255,255,255,0.65); letter-spacing: 0.04em; }

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll .line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scaleY(0.6); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}


/* inlined from ZIP: styles-2.css?v=2 */
/* ===== Rólam ===== */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--light);
  box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image .badge {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius);
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 8px 24px rgba(200,16,46,0.35);
  letter-spacing: 0.02em;
}
.about-image .badge strong { display: block; font-size: 28px; margin-bottom: 2px; letter-spacing: -0.01em; }
.about-image .name-tag {
  position: absolute;
  left: 24px; bottom: 24px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.95);
  color: var(--dark);
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.about-text h2 { margin-bottom: 24px; }
.about-text > p { color: var(--gray); font-size: 17px; line-height: 1.7; margin-bottom: 18px; }
.about-text > p strong { color: var(--dark); font-weight: 600; }
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.value { display: flex; flex-direction: column; gap: 12px; }
.value-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.value-icon svg { width: 22px; height: 22px; }
.value h4 { font-family: var(--display); font-size: 16px; font-weight: 600; color: var(--dark); }
.value p { font-size: 14px; color: var(--gray); line-height: 1.55; }

/* ===== Szolgáltatások ===== */
.services { background: var(--light-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--dark);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease;
}
.service-card:hover .service-icon { background: var(--primary); }
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 22px; }
.service-card > p { color: var(--gray); font-size: 15.5px; line-height: 1.6; flex: 1; }
.service-list { display: flex; flex-direction: column; gap: 0; }
.service-list li {
  font-size: 14px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
}
.service-list li::before {
  content: ""; width: 5px; height: 5px;
  border-radius: 50%; background: var(--primary);
  flex-shrink: 0;
}

/* ===== Galéria ===== */
.gallery { background: var(--white); }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; justify-content: center; }
.filters .filter {
  padding: 9px 18px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s ease;
}
.filters .filter:hover { color: var(--dark); border-color: var(--dark); }
.filters .filter.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
/* Posts module wrapper transparent so .gallery-item-ek grid children maradnak */
.gallery-grid > .module-posts,
.gallery-grid > .module { display: contents; }
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--light);
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(8) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.8) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay .tag {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
}
.gallery-overlay .title { font-family: var(--display); font-size: 18px; font-weight: 600; }
.gallery-overlay .zoom {
  position: absolute;
  top: 18px; right: 18px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(15,15,15,0.92);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-close, .lightbox-nav {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-nav.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-caption {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  text-align: center;
}

/* ===== Ajánlatkérés / CTA ===== */
.quote {
  background: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.quote::before {
  content: ""; position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}
.quote::after {
  content: ""; position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.quote-intro h2 { color: var(--white); margin-bottom: 24px; }
.quote-intro .eyebrow { color: rgba(255,255,255,0.95); }
.quote-intro .eyebrow::before { background: rgba(255,255,255,0.95); }
.quote-intro > p { color: rgba(255,255,255,0.88); font-size: 17px; margin-bottom: 32px; max-width: 460px; line-height: 1.6; }
.quote-points { display: flex; flex-direction: column; gap: 16px; }
.quote-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.95);
}
.quote-points svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; color: var(--white); }

.quote-form {
  background: var(--white);
  color: var(--dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}
.quote-form h3 { font-size: 22px; margin-bottom: 6px; }
.quote-form > p { color: var(--gray); font-size: 14.5px; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.01em;
}
.field label .req { color: var(--primary); }
.field input, .field select, .field textarea {
  font-family: var(--body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.field.error input, .field.error select, .field.error textarea {
  border-color: var(--primary);
  background: #FFF6F7;
}
.field .error-msg {
  display: none;
  font-size: 12.5px;
  color: var(--primary);
  font-weight: 500;
}
.field.error .error-msg { display: block; }
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 20px;
}
.consent input { margin-top: 3px; accent-color: var(--primary); }
.form-success {
  display: none;
  padding: 20px;
  background: #ECFDF5;
  border: 1px solid #6EE7B7;
  border-radius: 10px;
  color: #065F46;
  font-size: 14.5px;
  margin-bottom: 16px;
}
.form-success.visible { display: block; }
.quote-form .btn-submit { padding: 13px 22px; font-size: 14.5px; align-self: flex-start; }
.quote-form { display: flex; flex-direction: column; }

/* ===== Kapcsolat ===== */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: stretch;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.contact-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-card .label { font-family: var(--display); font-size: 13px; font-weight: 600; color: var(--gray); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.contact-card .value { font-family: var(--display); font-size: 17px; font-weight: 600; color: var(--dark); }
.contact-card a.value:hover { color: var(--primary); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
  background: var(--light);
  border: 1px solid var(--border);
  position: relative;
}
.map-wrap .google-maps { width: 100%; height: 100%; min-height: 480px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 480px; border: 0; display: block; }

/* ===== Footer ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h5 {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { display: block; padding: 5px 0; font-size: 14.5px; color: rgba(255,255,255,0.7); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--white); }
.footer-brand { display: flex; flex-direction: column; gap: 16px; max-width: 300px; }
.footer-brand .logo { color: var(--white); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== Mobile menu ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 1000;
  display: none;
  flex-direction: column;
  padding: 100px 32px 40px;
}
.mobile-menu.open { display: flex; animation: fadeIn 0.25s ease; }
.mobile-menu nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  display: block;
  padding: 16px 0;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu .footer { margin-top: auto; color: rgba(255,255,255,0.6); font-size: 14px; }
.mobile-menu .footer a { color: var(--white); display: block; margin-top: 8px; }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .about-grid, .quote-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(8) { grid-column: span 2; grid-row: auto; }
  .gallery-item:nth-child(1) { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 40px; }
  nav.primary, .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
}
@media (max-width: 640px) {
  :root { --section-py: 70px; }
  .services-grid, .values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero { padding: 120px 0 80px; }
}


/* === MW Live Edit overrides (auto-generated) === */

.mw-live-edit [data-layout-container] { min-height: 0 !important; }

.brand img, .nav-logo img, .logo img { max-width: 48px; max-height: 48px; width: auto; height: auto; object-fit: contain; }
.f-brand .logo img, footer .logo img { max-width: 40px; max-height: 40px; }

.mw-live-edit .reveal,
.mw-live-edit .in-view {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.mw-live-edit .hero-eyebrow,
.mw-live-edit .hero-sub {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.mw-live-edit #top { padding-top: 0; }

/* Lightbox (DOM-based, gallery-item kártyák) */
.lb { position: fixed; inset: 0; background: rgba(15,18,24,.94); z-index: 100; display: none; align-items: center; justify-content: center; padding: 40px; overflow-y: auto; }
.lb.open { display: flex; }
.lb-inner { max-width: 1080px; width: 100%; margin: auto; }
@media (max-width: 620px) { .lb { padding: 16px; } }
.lb-meta-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; color: rgba(255,255,255,.85); font-family: var(--display); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
.lb-tag { padding: 4px 10px; background: var(--accent, #f08a2c); color: #fff; border-radius: 2px; }
.lb-title { font-family: var(--display); font-size: 24px; color: #fff; margin: 0 0 16px; }
.lb-stage { aspect-ratio: 16/10; background: #0d0f14; position: relative; border: 1px solid rgba(255,255,255,.06); overflow: hidden; border-radius: var(--radius-lg, 8px); }
.lb-stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: #0d0f14; }
.lb-stage .stage-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.25); background: rgba(15,18,24,.55); backdrop-filter: blur(6px); color: #fff; cursor: pointer; display: grid; place-items: center; transition: .2s; z-index: 2; font-size: 28px; }
.lb-stage .stage-nav:hover { background: var(--accent, #f08a2c); border-color: var(--accent, #f08a2c); }
.lb-stage .stage-nav.prev { left: 12px; }
.lb-stage .stage-nav.next { right: 12px; }
.lb-close { position: fixed; top: 20px; right: 20px; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.25); background: rgba(15,18,24,.6); color: #fff; cursor: pointer; font-size: 24px; z-index: 101; border-radius: 50%; }
.lb-close:hover { background: var(--accent, #f08a2c); border-color: var(--accent, #f08a2c); }

/* MW social_links module styling — match footer-brand dark palette */
.footer-brand .mw-social-links { height: auto; /*display: flex;*/ display:none; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.footer-brand .mw-social-links a { width: 38px !important; height: 38px !important; background: transparent !important; background-color: transparent !important; color: rgba(255,255,255,.7) !important; border: 1px solid rgba(255,255,255,.15) !important; border-radius: 50% !important; margin: 0 !important; padding: 0 !important; display: grid !important; place-items: center !important; text-align: center !important; }
.footer-brand .mw-social-links a:hover { background: var(--primary) !important; background-color: var(--primary) !important; border-color: var(--primary) !important; color: #fff !important; }
.footer-brand .mw-social-links a span { color: inherit !important; }
.footer-brand .mw-social-links a span { font-size: 16px; line-height: 1; }

/* ───── Impresszum / Adatvédelmi page + Cookie banner — RK Tető brand (red) ───── */

/* Static-page header-clearance (page-impresszum / page-adatvedelmi body class) */
body.page-impresszum .section-inner,
body.page-adatvedelmi .section-inner {
  padding: 110px 20px 80px;
  max-width: 100%;
  background: var(--light, #F5F5F5);
}

.impresszum-wrap {
  display: flex;
  flex-direction: column;
  gap: 44px;
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--body, 'Inter'), sans-serif;
}
.impresszum-lead {
  font-size: 1rem;
  color: var(--gray, #6B7280);
  line-height: 1.7;
  padding: 22px 26px;
  background: #fff;
  border-left: 4px solid var(--primary, #C8102E);
  border-radius: var(--radius, 10px);
  margin: 0;
  box-shadow: var(--shadow-sm);
}
.impresszum-section h2 {
  font-family: var(--display, 'Outfit'), sans-serif;
  color: var(--dark, #1A1A1A);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border, #E5E7EB);
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.impresszum-section h2 .mdi {
  color: var(--primary, #C8102E);
  font-size: 1.4em;
  line-height: 1;
}
.impresszum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.impresszum-item {
  background: #fff;
  border: 1px solid var(--border, #E5E7EB);
  border-radius: var(--radius-sm, 6px);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.impresszum-item:hover {
  border-color: var(--primary, #C8102E);
  box-shadow: var(--shadow-md);
}
.impresszum-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray, #6B7280);
  font-weight: 600;
  font-family: var(--display, 'Outfit'), sans-serif;
}
.impresszum-value { font-size: 1rem; color: var(--dark, #1A1A1A); font-weight: 500; line-height: 1.5; }
.impresszum-todo { color: #c2410c; font-style: italic; font-weight: 500; }

.impresszum-contact-row { display: flex; flex-wrap: wrap; gap: 14px; }
.impresszum-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #fff;
  border: 1px solid var(--border, #E5E7EB);
  border-radius: var(--radius-sm, 6px);
  color: var(--dark, #1A1A1A);
  font-weight: 500;
  text-decoration: none;
  transition: all .2s ease;
}
.impresszum-contact-link:hover {
  background: var(--primary, #C8102E);
  border-color: var(--primary, #C8102E);
  color: #fff;
}
.impresszum-contact-link .mdi { color: var(--primary, #C8102E); font-size: 1.2em; }
.impresszum-contact-link:hover .mdi { color: #fff; }

.impresszum-section-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--dark, #1A1A1A);
  margin: 0;
}
.impresszum-section-text p a { color: var(--primary, #C8102E); text-decoration: underline; }
.impresszum-section-text p a:hover { color: var(--primary-dark, #A60D26); }

@media (max-width: 767px) {
  .impresszum-wrap { gap: 32px; }
  .impresszum-section h2 { font-size: 1.2rem; gap: 10px; margin-bottom: 18px; }
  .impresszum-grid { grid-template-columns: 1fr; gap: 10px; }
  .impresszum-item { padding: 14px 16px; }
  .impresszum-contact-row { flex-direction: column; }
  .impresszum-contact-link { width: 100%; justify-content: center; }
}

/* ───── Cookie notice — flex-bar, brand red ───── */
.scw-cookie {
  background: var(--dark, #1A1A1A) !important;
  color: #fff !important;
  font-family: var(--body, 'Inter'), sans-serif !important;
  font-size: 14px !important;
  border-top: 3px solid var(--primary, #C8102E) !important;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.25) !important;
  bottom: 0 !important; left: 0 !important; right: 0 !important; width: 100% !important;
  position: fixed !important; z-index: 9999999999 !important;
}
.scw-cookie a { color: #fff !important; text-decoration: none !important; }
.scw-cookie .scw-cookie-bar {
  display: flex !important;
  align-items: center !important;
  gap: 24px !important;
  padding: 14px 32px !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}
.scw-cookie-message {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  line-height: 1.55 !important;
  font-size: 14px !important;
  color: rgba(255,255,255,0.97) !important;
  float: none !important;
  width: auto !important;
  text-align: left !important;
}
.scw-cookie-actions {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-shrink: 0 !important;
}
.scw-cookie-accept {
  background: var(--primary, #C8102E) !important;
  color: #fff !important;
  border: none !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-sm, 6px) !important;
  font-family: var(--body, 'Inter'), sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease !important;
  letter-spacing: 0.02em !important;
}
.scw-cookie-accept:hover {
  background: var(--primary-dark, #A60D26) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25) !important;
}
.scw-cookie-icon-btn {
  background: transparent !important;
  border: none !important;
  width: 38px !important; height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: var(--radius-sm, 6px) !important;
  color: #fff !important;
  cursor: pointer !important;
  padding: 0 !important;
  transition: background .2s ease !important;
  text-decoration: none !important;
}
.scw-cookie-icon-btn:hover { background: rgba(255,255,255,0.14) !important; }
.scw-cookie-icon-btn .mdi { font-size: 20px !important; color: #fff !important; line-height: 1 !important; }
.scw-cookie-icon-btn.scw-cookie-close .mdi { color: #ffe5e5 !important; }
.scw-cookie-icon-btn.scw-cookie-close:hover .mdi { color: #fff !important; }
.scw-cookie-panel-toggle {
  background: var(--dark, #1A1A1A) !important;
  border-top: 3px solid var(--primary, #C8102E) !important;
  border-radius: 6px 6px 0 0 !important;
  color: #fff !important;
  padding: 10px 14px !important;
}
.scw-cookie-panel-toggle .mdi-cookie { color: #fff !important; font-size: 22px !important; }
.scw-cookie-details {
  padding: 18px 32px 24px !important;
  border-top: 1px solid rgba(255,255,255,0.18) !important;
  background: rgba(255,255,255,0.04) !important;
}
.scw-cookie-details-title { font-weight: 700 !important; color: #fff !important; margin-bottom: 12px !important; font-size: 15px !important; }
.scw-cookie-toggle {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  border-radius: var(--radius-sm, 6px) !important;
  padding: 10px 14px !important;
}
.scw-cookie-name { font-size: 13px !important; color: rgba(255,255,255,0.97) !important; }
.scw-cookie-tooltip {
  background: #fff !important;
  border: none !important;
  color: var(--dark, #1A1A1A) !important;
  border-radius: var(--radius-sm, 6px) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  padding: 6px 12px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18) !important;
  width: auto !important;
  white-space: nowrap !important;
}
.scw-cookie-content,
.scw-cookie-decision { display: none !important; }

@media (max-width: 767px) {
  .scw-cookie .scw-cookie-bar {
    flex-direction: column !important;
    gap: 14px !important;
    align-items: stretch !important;
    padding: 16px 20px !important;
  }
  .scw-cookie-message { text-align: center !important; }
  .scw-cookie-actions { justify-content: center !important; flex-wrap: wrap !important; }
  .scw-cookie-accept { flex: 1 1 auto !important; min-width: 160px !important; padding: 12px 16px !important; }
  .scw-cookie-details { padding: 16px 20px 22px !important; }
  .scw-cookie-toggle { width: 100% !important; margin: 6px 0 !important; }
}

/* ───── DSP (Demján Sándor Program) — pályázati arculati compliance ───── */
.dsp-compliance {
  padding: 0 0 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.dsp-statement {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
.dsp-logos {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px;
}
.dsp-logo,
.neum-logo {
  height: 141px;     /* DSP hivatalos minimum: 50mm / 141px */
  width: auto;
  display: block;
  transition: opacity 0.2s ease;
}
.dsp-logos a:hover .dsp-logo { opacity: 0.85; }

@media (max-width: 1024px) {
  .dsp-logo, .neum-logo { height: 100px; }
}
@media (max-width: 768px) {
  .dsp-compliance { padding-bottom: 32px; margin-bottom: 32px; }
  .dsp-logos { gap: 24px; padding: 8px; }
  .dsp-logo, .neum-logo { height: 64px; }
  .dsp-statement { font-size: 13px; margin-bottom: 18px; }
}
/* Live Edit guard: a mobil-menü ne fixed-overlay-ként csapdázza a szerkesztőt
   (csukás-JS nem fut Live Edit-ben) — inline + látható, így szerkeszthető és nem blokkol. */
body.mw-admin-live-edit-page .mobile-menu { display: none !important; position: static !important; inset: auto !important; min-height: 0 !important; padding: 24px 32px !important; }
body.mw-admin-live-edit-page .menu-toggle { display: none !important; }

/* Nyitott mobil-menü: a header-hamburgert elrejtjük, csak az X (close) látszik — nincs ikon-átfedés */
body:has(.mobile-menu.open) .header-inner .menu-toggle { display: none !important; }

/* ===== mw-contact-form-editable-css: MW custom_fields, admin-editable, 2-col (rk-teto) ===== */
.quote-form .vc-fields > div { display:flex; flex-wrap:wrap; gap:16px; }
.quote-form .vc-fields [class*="mw-flex-col-md-"] { flex:0 0 100%; max-width:100%; box-sizing:border-box; }
.quote-form .vc-fields .mw-flex-col-md-6 { flex:0 0 calc(50% - 8px); max-width:calc(50% - 8px); }
.quote-form .vc-fields .mw-ui-field-holder { display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.quote-form .vc-fields .mw-ui-label { font-family:var(--display); font-size:13px; font-weight:600; color:var(--dark); letter-spacing:.01em; }
.quote-form .vc-fields .mw-ui-field,
.quote-form .vc-fields .form-select {
  font-family:var(--body); font-size:15px; padding:12px 14px; border:1px solid var(--border); border-radius:8px;
  background:var(--white); color:var(--dark); width:100%; box-sizing:border-box; transition:border-color .2s, box-shadow .2s;
}
.quote-form .vc-fields .mw-ui-field:focus,
.quote-form .vc-fields .form-select:focus { outline:none; border-color:var(--primary); box-shadow:0 0 0 3px rgba(200,16,46,0.12); }
.quote-form .vc-fields textarea.mw-ui-field { resize:vertical; min-height:110px; }
.quote-form .vc-fields .mw-ui-field::placeholder { color:var(--gray); opacity:.7; }
@media (max-width:560px) { .quote-form .vc-fields .mw-flex-col-md-6 { flex:0 0 100%; max-width:100%; } }
