/* =========================================================
   LEVA-Generalunternehmung AG — Stylesheet
   Design tokens
   ========================================================= */
:root {
  --bg-dark: #111311;
  --bg-dark-2: #161916;
  --bg-light: #F4F1EA;
  --bg-light-2: #ECE7DC;
  --text-on-dark: #F5F4EF;
  --text-on-light: #171817;
  --muted-on-dark: #9A968D;
  --muted-on-light: #6C695F;
  --accent: #C8753D;
  --accent-soft: rgba(200, 117, 61, 0.14);
  --border-on-dark: rgba(245, 244, 239, 0.12);
  --border-on-light: rgba(23, 24, 23, 0.14);
  --max-width: 1380px;
  --pad-desktop: 72px;
  --pad-mobile: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  background: var(--bg-light);
  color: var(--text-on-light);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Archivo', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-desktop);
}
@media (max-width: 900px) {
  .wrap { padding: 0 var(--pad-mobile); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

section { position: relative; }

.section-dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section-light { background: var(--bg-light); color: var(--text-on-light); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 3px;
  border: 1px solid transparent;
  background: transparent;
  transition: transform 0.4s var(--ease), background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #16110B; }
.btn-primary:hover { transform: translateY(-2px); background: #d5844b; }
.btn-primary .arrow { transition: transform 0.35s var(--ease); }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-outline-dark { border-color: var(--border-on-dark); color: var(--text-on-dark); }
.btn-outline-dark:hover { border-color: var(--accent); color: var(--accent); }

.btn-outline-light { border-color: var(--border-on-light); color: var(--text-on-light); }
.btn-outline-light:hover { border-color: var(--accent); color: var(--accent); }

.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 26px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 14px 0;
  background: rgba(17, 19, 17, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-on-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(17, 19, 17, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 244, 239, 0.22);
  border-radius: 10px;
  padding: 16px 30px;
}
.logo {
  display: flex;
  align-items: center;
  color: #FFFFFF;
}
.logo-img {
  height: 70px;
  width: auto;
  display: block;
}
.logo-img-mobile { height: 40px; }
.logo-img-footer { height: 56px; margin-bottom: 6px; }
.logo .mark {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 0.02em;
  color: #FFFFFF;
}
.logo .sub {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #E8E6DF;
  margin-top: 5px;
  text-transform: uppercase;
  font-weight: 500;
}
.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}
.main-nav a:hover { color: var(--accent); }
.header-right { display: flex; align-items: center; gap: 22px; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  color: #FFFFFF; font-size: 16px; font-weight: 600;
}
.header-phone svg { width: 16px; height: 16px; stroke: var(--accent); }
.burger {
  display: none;
  background: none; border: none;
  width: 26px; height: 18px;
  position: relative;
}
.burger span, .burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0; width: 100%; height: 1.5px;
  background: #FFFFFF; transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger span { top: 8px; }
.burger span::before { top: -8px; }
.burger span::after { top: 8px; }

@media (max-width: 980px) {
  .main-nav { display: none; }
  .header-phone { display: none; }
  .burger { display: block; }
  .header-cta { display: none; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg-dark);
  display: flex; flex-direction: column;
  padding: 26px var(--pad-mobile) 40px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu-close { background: none; border: none; color: var(--text-on-dark); font-size: 30px; line-height: 1; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; margin-top: 50px; }
.mobile-menu nav a {
  color: var(--text-on-dark); font-family: 'Archivo', sans-serif; font-size: 32px; font-weight: 700;
  padding: 14px 0; border-bottom: 1px solid var(--border-on-dark);
}
.mobile-menu-footer { margin-top: auto; display: flex; flex-direction: column; gap: 16px; }
.mobile-menu-footer .btn { justify-content: center; }
.mobile-menu-footer a.phone-link { color: var(--muted-on-dark); font-size: 15px; text-align: center; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--text-on-dark);
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,13,11,0.55) 0%, rgba(12,13,11,0.45) 40%, rgba(11,12,10,0.92) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 120px var(--pad-desktop) 0;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 900px) {
  .hero-content { padding: 130px var(--pad-mobile) 0; }
}
.hero-label { margin-bottom: 26px; }
.hero-headline {
  font-size: clamp(40px, 6.4vw, 82px);
  max-width: 900px;
  font-weight: 700;
}
.hero-headline .accented { color: var(--accent); font-style: normal; }
.hero-sub {
  margin-top: 26px;
  max-width: 560px;
  font-size: 18px;
  color: var(--text-on-dark);
  opacity: 0.88;
}
.hero-ctas { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-trust {
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--muted-on-dark);
}
.hero-marquee-wrap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  border-top: 1px solid var(--border-on-dark);
  overflow: hidden;
  padding: 26px 0;
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 42s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-track span {
  font-family: 'Archivo', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted-on-dark);
  display: flex; align-items: center; gap: 40px;
}
.marquee-track span::after {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  margin-left: 40px;
}
.scroll-indicator {
  position: absolute;
  right: var(--pad-desktop);
  bottom: 130px;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--muted-on-dark);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-indicator .line {
  width: 1px; height: 44px; background: var(--muted-on-dark);
  writing-mode: initial;
  position: relative;
  overflow: hidden;
}
.scroll-indicator .line::after {
  content: '';
  position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--accent);
  animation: scrollline 2.4s ease-in-out infinite;
}
@keyframes scrollline {
  0% { top: -100%; } 50% { top: 0; } 100% { top: 100%; }
}
@media (max-width: 900px) { .scroll-indicator { display: none; } }

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* =========================================================
   Intro section
   ========================================================= */
.intro-section { padding: 140px 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: start;
}
.intro-left h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  margin-top: 20px;
  color: var(--text-on-light);
}
.intro-right p { font-size: 17px; color: var(--text-on-light); margin: 0 0 20px; }
.intro-right p.muted { color: var(--muted-on-light); font-size: 15.5px; }
.intro-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 6px; font-weight: 600; font-size: 14.5px; color: var(--text-on-light);
  border-bottom: 1px solid var(--accent); padding-bottom: 3px;
}
.intro-link svg { transition: transform 0.3s var(--ease); width: 14px; height: 14px; }
.intro-link:hover svg { transform: translateX(4px); }

.stat-row {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-on-light);
}
.stat {
  padding: 30px 30px 0 0;
  border-right: 1px solid var(--border-on-light);
}
.stat:last-child { border-right: none; }
.stat .num {
  font-family: 'Archivo', sans-serif;
  font-size: 40px; font-weight: 700; color: var(--accent);
}
.stat .label { margin-top: 8px; font-size: 13.5px; color: var(--muted-on-light); }

@media (max-width: 900px) {
  .intro-section { padding: 90px 0; }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--border-on-light); padding: 24px 0; }
}

/* =========================================================
   Services
   ========================================================= */
.services-section { padding: 140px 0 100px; }
.services-head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 40px;
  margin-bottom: 60px;
}
.services-head h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  margin-top: 18px;
  max-width: 600px;
}
.services-head p { max-width: 340px; color: var(--muted-on-dark); font-size: 15.5px; }

.service-panel {
  border-top: 1px solid var(--border-on-dark);
  display: grid;
  grid-template-columns: 90px 1fr 1fr;
  gap: 40px;
  padding: 46px 0;
  align-items: center;
  cursor: pointer;
  transition: background 0.4s ease;
}
.service-panel:last-child { border-bottom: 1px solid var(--border-on-dark); }
.service-panel:hover { background: rgba(245,244,239,0.02); }
.service-num {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  color: var(--muted-on-dark);
  font-weight: 600;
  align-self: start;
  padding-top: 6px;
}
.service-body h3 {
  font-size: clamp(26px, 3vw, 38px);
  transition: color 0.3s ease;
}
.service-panel:hover .service-body h3,
.service-panel.active .service-body h3 { color: var(--accent); }
.service-body p { margin-top: 16px; color: var(--muted-on-dark); font-size: 15.5px; max-width: 480px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.service-tags span {
  font-size: 12px; color: var(--muted-on-dark); border: 1px solid var(--border-on-dark);
  padding: 5px 11px; border-radius: 30px;
}
.service-link {
  margin-top: 22px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--text-on-dark);
}
.service-link svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.service-panel:hover .service-link svg { transform: translateX(4px); }

.service-media {
  position: relative;
  aspect-ratio: 5/4;
  overflow: hidden;
  border-radius: 2px;
}
.service-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.service-panel:hover .service-media img { transform: scale(1.05); }

@media (max-width: 980px) {
  .service-panel { grid-template-columns: 1fr; gap: 22px; }
  .service-num { padding-top: 0; }
  .service-media { order: -1; aspect-ratio: 4/3; }
  .services-head { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* =========================================================
   Process / Advantage
   ========================================================= */
.process-section { padding: 130px 0; background: var(--bg-light-2); }
.process-head { max-width: 720px; }
.process-head h2 { font-size: clamp(30px, 3.6vw, 46px); margin-top: 18px; }
.process-head p { margin-top: 20px; color: var(--muted-on-light); font-size: 16.5px; }

.process-steps {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.process-line {
  position: absolute;
  top: 11px; left: 0; right: 0;
  height: 1px;
  background: var(--border-on-light);
}
.process-line-fill {
  position: absolute; top: 0; left: 0; height: 1px;
  background: var(--accent);
  width: 0%;
  transition: width 1.6s var(--ease);
}
.process-step { position: relative; padding-right: 30px; }
.process-dot {
  width: 23px; height: 23px; border-radius: 50%;
  background: var(--bg-light-2);
  border: 1px solid var(--border-on-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--muted-on-light);
  position: relative; z-index: 2;
  transition: border-color 0.4s ease, color 0.4s ease, background 0.4s ease;
}
.process-step.active .process-dot { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.process-step h3 { margin-top: 26px; font-size: 19px; }
.process-step p { margin-top: 10px; font-size: 14.5px; color: var(--muted-on-light); }

@media (max-width: 900px) {
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .process-line { top: 0; bottom: 0; left: 11px; width: 1px; height: auto; right: auto; }
  .process-line-fill { width: 1px; height: 0%; top: 0; left: 11px; transition: height 1.6s var(--ease); }
  .process-step { padding-left: 40px; padding-right: 0; }
  .process-dot { position: absolute; left: 0; top: 0; }
}

/* =========================================================
   Target groups
   ========================================================= */
.target-section { padding: 130px 0; }
.target-section h2 { font-size: clamp(30px, 3.6vw, 46px); margin-top: 18px; max-width: 640px; }
.target-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-on-light);
  border: 1px solid var(--border-on-light);
}
.target-card { background: var(--bg-light); padding: 40px 30px; }
.target-card .idx { font-size: 12px; color: var(--accent); font-weight: 700; letter-spacing: 0.1em; }
.target-card h3 { margin-top: 20px; font-size: 20px; }
.target-card p { margin-top: 14px; font-size: 14.5px; color: var(--muted-on-light); }
@media (max-width: 980px) { .target-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .target-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Projects
   ========================================================= */
.projects-section { padding: 130px 0; background: var(--bg-dark); color: var(--text-on-dark); }
.projects-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 56px; }
.projects-head h2 { font-size: clamp(30px, 3.6vw, 46px); margin-top: 18px; max-width: 560px; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.project-card {
  position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 2px;
}
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.project-card:hover img { transform: scale(1.06); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,19,17,0) 40%, rgba(17,19,17,0.92) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 26px;
}
.project-overlay .cat { font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.project-overlay .desc { margin-top: 10px; font-size: 15px; color: var(--text-on-dark); display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.project-overlay svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.3s var(--ease); }
.project-card:hover .project-overlay svg { transform: translate(3px, -3px); }
@media (max-width: 980px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .projects-grid { grid-template-columns: 1fr; } .projects-head { flex-direction: column; align-items: flex-start; } }

/* =========================================================
   Benefits / Quality
   ========================================================= */
.quality-section { padding: 130px 0; }
.quality-grid { display: grid; grid-template-columns: 0.9fr 1fr; gap: 80px; align-items: center; }
.quality-media { aspect-ratio: 4/5; overflow: hidden; border-radius: 2px; }
.quality-media img { width: 100%; height: 100%; object-fit: cover; }
.quality-content h2 { font-size: clamp(28px, 3.2vw, 42px); margin-top: 18px; }
.benefit-list { margin-top: 46px; display: flex; flex-direction: column; }
.benefit-item { display: grid; grid-template-columns: 40px 1fr; gap: 20px; padding: 26px 0; border-top: 1px solid var(--border-on-light); }
.benefit-item:last-child { border-bottom: 1px solid var(--border-on-light); }
.benefit-item svg { width: 22px; height: 22px; stroke: var(--accent); margin-top: 2px; }
.benefit-item h3 { font-size: 17.5px; }
.benefit-item p { margin-top: 8px; font-size: 14.5px; color: var(--muted-on-light); }
@media (max-width: 980px) { .quality-grid { grid-template-columns: 1fr; gap: 40px; } .quality-media { aspect-ratio: 16/9; } }

/* =========================================================
   CTA section
   ========================================================= */
.cta-section {
  position: relative;
  padding: 160px 0;
  color: var(--text-on-dark);
  overflow: hidden;
}
.cta-media { position: absolute; inset: 0; z-index: 0; }
.cta-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-media::after { content: ''; position: absolute; inset: 0; background: rgba(11,12,10,0.82); }
.cta-inner { position: relative; z-index: 1; max-width: 660px; }
.cta-inner h2 { font-size: clamp(32px, 4.6vw, 56px); margin-top: 18px; }
.cta-inner p { margin-top: 22px; font-size: 17px; color: var(--muted-on-dark); max-width: 520px; }
.cta-ctas { margin-top: 40px; display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.cta-phone { font-family: 'Archivo', sans-serif; font-size: 17px; font-weight: 700; border-bottom: 1px solid var(--border-on-dark); padding-bottom: 4px; }
.cta-hours { margin-top: 26px; font-size: 13.5px; color: var(--muted-on-dark); }

/* =========================================================
   Contact
   ========================================================= */
.contact-section { padding: 140px 0; }
.contact-grid { display: grid; grid-template-columns: 0.8fr 1fr; gap: 90px; }
.contact-info h2 { font-size: clamp(28px, 3.4vw, 42px); }
.contact-block { margin-top: 42px; }
.contact-block h4 { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-on-light); font-weight: 600; }
.contact-block p, .contact-block a { margin-top: 10px; font-size: 15.5px; display: block; }
.contact-block a:hover { color: var(--accent); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--text-on-light); }
.form-field input, .form-field select, .form-field textarea {
  border: 1px solid var(--border-on-light);
  background: var(--bg-light);
  padding: 13px 15px;
  font-size: 15px;
  border-radius: 3px;
  font-family: inherit;
  color: var(--text-on-light);
  transition: border-color 0.3s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--accent);
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field .error-msg { font-size: 12.5px; color: #B4472B; min-height: 14px; }
.file-drop {
  border: 1px dashed var(--border-on-light);
  border-radius: 3px; padding: 20px; text-align: center; font-size: 13.5px; color: var(--muted-on-light);
  cursor: pointer;
}
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; margin: 6px 0 24px; }
.checkbox-row input { margin-top: 3px; }
.checkbox-row label { font-size: 13.5px; color: var(--muted-on-light); }
.form-success {
  display: none;
  padding: 22px; border: 1px solid var(--border-on-light); border-radius: 3px;
  background: var(--accent-soft); font-size: 15px;
}
.form-success.show { display: block; }
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .form-grid { grid-template-columns: 1fr; }
}

/* Map */
.map-section { padding: 0 0 130px; }
.map-frame {
  position: relative;
  aspect-ratio: 21/8;
  border: 1px solid var(--border-on-light);
  overflow: hidden;
  filter: grayscale(1) contrast(1.05) brightness(0.96);
}
@media (max-width: 700px) { .map-frame { aspect-ratio: 4/5; } }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.map-btn-wrap { margin-top: 20px; display: flex; justify-content: flex-end; }
@media (max-width: 700px) { .map-btn-wrap { justify-content: flex-start; } }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--bg-dark); color: var(--text-on-dark); padding: 90px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .mark { font-family: 'Archivo', sans-serif; font-size: 26px; font-weight: 800; }
.footer-brand .sub2 { color: var(--muted-on-dark); font-size: 13px; margin-top: 6px; }
.footer-tagline { margin-top: 26px; color: var(--muted-on-dark); font-size: 14.5px; max-width: 260px; }
.footer-col h4 { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-on-dark); font-weight: 600; margin-bottom: 20px; }
.footer-col a, .footer-col p { display: block; font-size: 14.5px; margin-bottom: 12px; color: var(--text-on-dark); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 80px; padding-top: 26px; border-top: 1px solid var(--border-on-dark);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--muted-on-dark);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Mobile contact bar
   ========================================================= */
.mobile-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: rgba(17,19,17,0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-on-dark);
  padding: 12px var(--pad-mobile);
  gap: 12px;
}
.mobile-bar a {
  flex: 1; text-align: center; padding: 13px; border-radius: 3px; font-size: 14px; font-weight: 600;
}
.mobile-bar .call { background: transparent; border: 1px solid var(--border-on-dark); color: var(--text-on-dark); }
.mobile-bar .request { background: var(--accent); color: #16110B; }
@media (max-width: 900px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 72px; }
}

/* =========================================================
   Cookie banner
   ========================================================= */
.cookie-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px; z-index: 300;
  max-width: 520px;
  background: var(--bg-dark); color: var(--text-on-dark);
  border: 1px solid var(--border-on-dark);
  border-radius: 4px;
  padding: 24px;
  transform: translateY(140%);
  transition: transform 0.6s var(--ease);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 13.5px; color: var(--muted-on-dark); margin: 0 0 16px; }
.cookie-actions { display: flex; gap: 12px; }
@media (max-width: 900px) { .cookie-banner { bottom: 84px; } }
@media (max-width: 560px) { .cookie-banner { left: 12px; right: 12px; padding: 20px; } }

/* Legal pages */
.legal-page { padding: 180px 0 120px; max-width: 820px; margin: 0 auto; }
.legal-page h1 { font-size: clamp(30px, 4vw, 44px); }
.legal-page h2 { font-size: 20px; margin-top: 50px; margin-bottom: 14px; }
.legal-page p, .legal-page li { color: var(--muted-on-light); font-size: 15.5px; margin-bottom: 12px; }
.legal-page a { color: var(--accent); }
.legal-page .back-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 40px; font-size: 14px; font-weight: 600; color: var(--text-on-light); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap;
}
