:root {
  --color-brand: #C7A46A;
  --color-brand-dark: #b08e55;
  --color-brand-light: #d4b87e;
  --color-brand-bg: #f8f5f0;
  --color-dark: #1E1F23;
  --color-dark-soft: #2a2b30;
  --color-text: #1E1F23;
  --color-text-light: #6B7177;
  --color-text-muted: #9a9fa5;
  --color-border: #e2dfda;
  --color-bg: #ffffff;
  --color-bg-alt: #F6F5F3;
  --color-bg-warm: #D8D2C6;
  --color-white: #ffffff;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition: 200ms ease;
  --container: 1140px;
  --container-narrow: 720px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--color-text); background: var(--color-bg); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

h1, h2, h3 { font-family: var(--font-heading); color: var(--color-dark); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.35rem); }
h4 { font-family: var(--font-body); font-weight: 600; font-size: 1rem; color: var(--color-dark); }
p { color: var(--color-text); line-height: 1.7; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2rem); }
section { padding: clamp(3rem, 6vw, 5rem) 0; }

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { 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; }

/* ---- Gold line accent ---- */
.gold-line { display: block; width: 48px; height: 2px; background: var(--color-brand); margin-bottom: 1.25rem; }
.gold-line--center { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.75rem; font-family: var(--font-body); font-weight: 600; font-size: 0.875rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: var(--radius-sm); transition: all var(--transition);
  white-space: nowrap; -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.97); }
.btn--primary { background: var(--color-brand); color: var(--color-dark); }
.btn--primary:hover { background: var(--color-brand-dark); color: var(--color-white); }
.btn--dark { background: var(--color-dark); color: var(--color-white); }
.btn--dark:hover { background: var(--color-dark-soft); }
.btn--outline { background: transparent; color: var(--color-dark); border: 1.5px solid var(--color-border); }
.btn--outline:hover { border-color: var(--color-brand); color: var(--color-brand); }
.btn--outline-light { background: transparent; color: var(--color-white); border: 1.5px solid rgba(255,255,255,0.2); }
.btn--outline-light:hover { background: rgba(255,255,255,0.06); border-color: var(--color-brand); color: var(--color-brand); }
.btn--lg { padding: 1rem 2.25rem; font-size: 0.9375rem; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---- Labels & Intros ---- */
.label {
  display: inline-block; font-family: var(--font-body);
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--color-brand); margin-bottom: 0.75rem;
}
.section-intro { max-width: 560px; margin-bottom: 2.75rem; }
.section-intro--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-intro h2 { margin-bottom: 0.6rem; }
.section-intro p { color: var(--color-text-light); font-size: 1.0625rem; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(30,31,35,0.97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 0.5rem 0; box-shadow: 0 1px 0 rgba(199,164,106,0.1);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }

.navbar__logo { display: flex; align-items: center; }
.navbar__logo img { height: 44px; width: auto; filter: brightness(0) invert(1); transition: filter var(--transition); }

.navbar__links { display: flex; align-items: center; gap: 2rem; }
.navbar__links a { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.55); transition: color var(--transition); text-transform: uppercase; letter-spacing: 0.1em; }
.navbar__links a:hover, .navbar__links a.active { color: var(--color-brand); }
.navbar.scrolled .navbar__links a { color: rgba(255,255,255,0.5); }
.navbar.scrolled .navbar__links a:hover, .navbar.scrolled .navbar__links a.active { color: var(--color-brand); }
.navbar__cta { display: flex; align-items: center; gap: 1.25rem; }
.navbar__phone { display: flex; align-items: center; gap: 0.375rem; font-weight: 600; font-size: 0.8125rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.navbar.scrolled .navbar__phone { color: rgba(255,255,255,0.6); }
.navbar__phone:hover { color: var(--color-brand); }
.navbar__phone svg { width: 15px; height: 15px; }
.navbar__mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.navbar__mobile-toggle span { display: block; width: 22px; height: 1.5px; background: var(--color-white); transition: background var(--transition); }

.navbar--light { background: var(--color-dark); padding: 0.5rem 0; box-shadow: 0 1px 0 rgba(199,164,106,0.1); }
.navbar--light .navbar__links a { color: rgba(255,255,255,0.5); }
.navbar--light .navbar__links a:hover, .navbar--light .navbar__links a.active { color: var(--color-brand); }
.navbar--light .navbar__phone { color: rgba(255,255,255,0.6); }
.navbar--light .navbar__mobile-toggle span { background: var(--color-white); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  background: var(--color-dark); overflow: hidden; padding: 6rem 0 4rem;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,31,35,0.95) 0%, rgba(30,31,35,0.75) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 0.85fr; gap: 3rem; align-items: center; }
.hero__content { max-width: 540px; }
.hero__eyebrow { font-family: var(--font-body); font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-brand); margin-bottom: 1.5rem; }
.hero h1 { color: var(--color-white); margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--color-brand); }
.hero__subtitle { font-size: 1.0625rem; color: rgba(255,255,255,0.45); margin-bottom: 2.5rem; line-height: 1.7; max-width: 460px; }
.hero__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero__image { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; position: relative; }
.hero__image img { width: 100%; height: 100%; object-fit: cover; }
.hero__image::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(199,164,106,0.2); border-radius: var(--radius-lg); pointer-events: none; }

/* ============================================
   VORTEILE (4 cards)
   ============================================ */
.vorteile { background: var(--color-bg); }
.vorteile__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.vorteil-card {
  padding: 2rem 1.5rem; border: 1px solid var(--color-border); border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.vorteil-card:hover { border-color: var(--color-brand); box-shadow: 0 4px 20px rgba(199,164,106,0.08); }
.vorteil-card__icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-brand-bg); color: var(--color-brand);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.vorteil-card__icon svg { width: 20px; height: 20px; }
.vorteil-card h3 { margin-bottom: 0.375rem; font-size: 1rem; font-weight: 600; line-height: 1.3; }
.vorteil-card p { font-size: 0.875rem; color: var(--color-text-light); line-height: 1.6; }

/* ============================================
   DIENSTLEISTUNGEN (service cards)
   ============================================ */
.dienstleistungen { background: var(--color-bg-alt); }
.dl__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.dl-card {
  background: var(--color-bg); border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--color-border); transition: box-shadow var(--transition), transform 250ms ease;
}
.dl-card:hover { box-shadow: 0 8px 30px rgba(30,31,35,0.1); transform: translateY(-4px); }
.dl-card__image { aspect-ratio: 16/10; overflow: hidden; }
.dl-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.dl-card:hover .dl-card__image img { transform: scale(1.05); }
.dl-card__body { padding: 1.25rem 1.5rem; }
.dl-card__body h3 { margin-bottom: 0.25rem; font-size: 1rem; font-weight: 600; line-height: 1.3; }
.dl-card__body p { font-size: 0.8125rem; color: var(--color-text-light); margin-bottom: 0.75rem; }
.dl-card__link { font-size: 0.75rem; font-weight: 600; color: var(--color-brand); display: inline-flex; align-items: center; gap: 0.25rem; text-transform: uppercase; letter-spacing: 0.06em; }
.dl-card__link svg { width: 14px; height: 14px; }

/* ============================================
   BEFORE/AFTER SLIDER
   ============================================ */
.ba-section { background: var(--color-dark); }
.ba-section .section-intro h2 { color: var(--color-white); }
.ba-section .section-intro p { color: rgba(255,255,255,0.35); }
.ba-section .label { color: var(--color-brand); }

.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.ba-slider {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  cursor: col-resize; user-select: none; -webkit-user-select: none;
  touch-action: pan-y pinch-zoom; aspect-ratio: 3/4;
}
.ba-slider__after, .ba-slider__before { position: absolute; inset: 0; }
.ba-slider__after img, .ba-slider__before img { width: 100%; height: 100%; object-fit: cover; }
.ba-slider__before { clip-path: inset(0 50% 0 0); z-index: 2; }
.ba-slider__before::after { content: ''; position: absolute; inset: 0; background: rgba(30,31,35,0.2); pointer-events: none; }
.ba-slider__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--color-brand); z-index: 10; transform: translateX(-50%); }
.ba-slider__handle::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 38px; height: 38px; background: var(--color-dark); border: 2px solid var(--color-brand); border-radius: 50%; box-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.ba-slider__handle::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 10px; height: 10px; border-left: 2px solid var(--color-brand); border-right: 2px solid var(--color-brand); z-index: 11; }
.ba-slider__label { position: absolute; bottom: 0.625rem; padding: 0.2rem 0.5rem; font-family: var(--font-body); font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 2px; z-index: 5; color: var(--color-white); }
.ba-slider__label--before { left: 0.625rem; background: rgba(30,31,35,0.65); }
.ba-slider__label--after { right: 0.625rem; background: rgba(199,164,106,0.75); }

/* ============================================
   HOW IT WORKS (Ablauf)
   ============================================ */
.how-it-works { background: var(--color-bg); }
.how-it-works__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.how-step { padding-top: 1.5rem; border-top: 2px solid var(--color-border); transition: border-color 0.3s ease; }
.how-step:hover { border-color: var(--color-brand); }
.how-step__num { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--color-brand); opacity: 0.3; margin-bottom: 0.5rem; }
.how-step h3 { margin-bottom: 0.25rem; font-size: 1rem; font-weight: 600; line-height: 1.3; }
.how-step p { font-size: 0.875rem; color: var(--color-text-light); line-height: 1.6; }

/* ============================================
   CTA
   ============================================ */
.cta-section { background: var(--color-dark); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(199,164,106,0.06) 0%, transparent 70%); pointer-events: none; }
.cta-section .container { max-width: 600px; text-align: center; position: relative; z-index: 1; }
.cta-section h2 { color: var(--color-white); margin-bottom: 0.75rem; }
.cta-section p { color: rgba(255,255,255,0.35); font-size: 1.0625rem; margin-bottom: 2rem; }
.cta-actions { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--color-bg-alt); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--color-bg); padding: 2rem; border-radius: var(--radius-md);
  border: 1px solid var(--color-border); position: relative;
}
.testimonial-card::before { content: '"'; position: absolute; top: 0.75rem; right: 1.25rem; font-family: var(--font-heading); font-size: 4rem; color: var(--color-brand); opacity: 0.12; line-height: 1; }
.testimonial-card__stars { color: var(--color-brand); font-size: 0.875rem; letter-spacing: 2px; margin-bottom: 0.75rem; }
.testimonial-card blockquote { font-size: 0.9375rem; color: var(--color-text); line-height: 1.65; margin-bottom: 1rem; font-style: normal; }
.testimonial-card__author { font-family: var(--font-heading); font-size: 0.875rem; font-weight: 700; color: var(--color-dark); }
.testimonial-card__role { font-size: 0.75rem; color: var(--color-text-muted); }

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--color-bg); }
.faq__list { max-width: 640px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0; font-family: var(--font-body); font-size: 0.9375rem; font-weight: 600;
  text-align: left; color: var(--color-dark); transition: color var(--transition);
  min-height: 48px; -webkit-tap-highlight-color: transparent;
}
.faq-item__trigger:hover { color: var(--color-brand); }
.faq-item__trigger svg { width: 18px; height: 18px; color: var(--color-text-muted); transition: transform var(--transition); flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-item__trigger svg { transform: rotate(180deg); color: var(--color-brand); }
.faq-item__content { max-height: 0; overflow: hidden; transition: max-height 400ms ease; }
.faq-item.open .faq-item__content { max-height: 400px; padding-bottom: 1.25rem; }
.faq-item__content p { font-size: 0.9375rem; color: var(--color-text-light); }

/* ============================================
   CONTACT
   ============================================ */
.contact-section { background: var(--color-bg-alt); }
.contact__grid { display: grid; grid-template-columns: 5fr 7fr; gap: 3.5rem; align-items: start; }
.contact__info { display: flex; flex-direction: column; gap: 1.5rem; padding-top: 0.5rem; font-style: normal; }
.contact-info-item h2,
.contact-info-item h3,
.contact-info-item h4 { font-size: 1rem; font-weight: 600; line-height: 1.3; margin-bottom: 0.125rem; }
.contact-info-item p { font-size: 0.9375rem; color: var(--color-text-light); }
.contact-info-item a { color: var(--color-brand); transition: color var(--transition); }
.contact-info-item a:hover { color: var(--color-brand-dark); }
.contact__form-wrapper { background: var(--color-bg); border-radius: var(--radius-md); padding: clamp(1.5rem, 3vw, 2.5rem); border: 1px solid var(--color-border); }
.form-group { margin-bottom: 0.875rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--color-dark); margin-bottom: 0.3rem; text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.75rem 0.875rem; border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); background: var(--color-bg-alt); color: var(--color-dark);
  transition: border-color var(--transition); outline: none; font-size: 1rem;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--color-brand); box-shadow: 0 0 0 3px rgba(199,164,106,0.1); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7177' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.875rem center; padding-right: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-submit { margin-top: 1rem; }
.form-submit .btn { width: 100%; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--color-dark); padding: 4rem 0 1.5rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer__brand { }
.footer__brand .footer__logo { display: block; height: 50px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer__brand p { color: rgba(255,255,255,0.25); font-size: 0.8125rem; max-width: 260px; line-height: 1.6; }
.footer__column h3,
.footer__column h4 { font-family: var(--font-body); color: var(--color-brand); font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.875rem; line-height: 1.3; }
.footer__column a { display: block; font-size: 0.8125rem; color: rgba(255,255,255,0.3); padding: 0.2rem 0; transition: color var(--transition); }
.footer__column a:hover { color: var(--color-brand); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1.25rem; display: flex; align-items: center; justify-content: space-between; }
.footer__bottom p { font-size: 0.6875rem; color: rgba(255,255,255,0.15); }
.footer__bottom-links { display: flex; gap: 1.25rem; }
.footer__bottom-links a { font-size: 0.6875rem; color: rgba(255,255,255,0.15); transition: color var(--transition); }
.footer__bottom-links a:hover { color: var(--color-brand); }

/* ============================================
   SUBPAGE HERO
   ============================================ */
.page-hero { padding: clamp(7rem, 12vw, 9rem) 0 clamp(2.5rem, 5vw, 4rem); background: var(--color-dark); }
.page-hero .container { max-width: 600px; }
.page-hero h1 { color: var(--color-white); margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.35); font-size: 1rem; }

/* ============================================
   ABOUT
   ============================================ */
.about-content { background: var(--color-bg); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.about__image { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; position: relative; }
.about__image img { width: 100%; height: 100%; object-fit: cover; }
.about__image::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(199,164,106,0.15); border-radius: var(--radius-md); pointer-events: none; }
.about__text h2 { margin-bottom: 1.25rem; }
.about__text p { margin-bottom: 0.875rem; color: var(--color-text-light); }

/* ============================================
   SERVICES DETAIL
   ============================================ */
.service-detail { background: var(--color-bg); }
.service-block { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; margin-bottom: 4.5rem; }
.service-block:last-child { margin-bottom: 0; }
.service-block--reverse { direction: rtl; }
.service-block--reverse > * { direction: ltr; }
.service-block__image { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; }
.service-block__image img { width: 100%; height: 100%; object-fit: cover; }
.service-block__text h2 { margin-bottom: 0.75rem; }
.service-block__text p { margin-bottom: 1.25rem; color: var(--color-text-light); }
.feature-list { display: flex; flex-direction: column; gap: 0.5rem; }
.feature-list__item { display: flex; align-items: baseline; gap: 0.5rem; font-size: 0.9375rem; color: var(--color-text); }
.feature-list__item::before { content: '—'; color: var(--color-brand); font-weight: 700; flex-shrink: 0; }

/* ============================================
   PROJECTS
   ============================================ */
.projects-gallery { background: var(--color-bg-alt); }
.projects__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.project-card { background: var(--color-bg); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--color-border); }
.project-card .ba-slider { border-radius: 0; aspect-ratio: 16/10; }
.project-card__info { padding: 1rem 1.25rem; }
.project-card__info h2,
.project-card__info h4 { font-size: 1rem; font-weight: 600; line-height: 1.3; margin-bottom: 0.125rem; }
.project-card__info p { font-size: 0.8125rem; color: var(--color-text-light); }

/* ============================================
   LEGAL
   ============================================ */
.legal-content { background: var(--color-bg); padding: 2.5rem 0 4rem; }
.legal-content .container { max-width: var(--container-narrow); }
.legal-content h2 { font-size: 1.25rem; margin: 2rem 0 0.625rem; }
.legal-content h3 { font-family: var(--font-body); font-size: 0.9375rem; font-weight: 600; margin: 1rem 0 0.375rem; }
.legal-content p { margin-bottom: 0.625rem; font-size: 0.9375rem; color: var(--color-text-light); }
.legal-content ul { margin-bottom: 0.625rem; padding-left: 1.25rem; }
.legal-content ul li { list-style: disc; color: var(--color-text-light); margin-bottom: 0.25rem; font-size: 0.9375rem; }
.legal-content a { color: var(--color-brand); text-decoration: underline; }

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999; background: var(--color-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.75rem;
  opacity: 0; pointer-events: none; transition: opacity 250ms ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a { font-family: var(--font-body); font-size: 1.125rem; font-weight: 600; color: rgba(255,255,255,0.5); padding: 0.5rem 0; -webkit-tap-highlight-color: transparent; text-transform: uppercase; letter-spacing: 0.08em; }
.mobile-menu a:hover { color: var(--color-brand); }
.mobile-menu__close { position: absolute; top: 1rem; right: 1rem; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; color: var(--color-white); }
.mobile-menu__close svg { width: 24px; height: 24px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 1280px) {
  .hero .container { gap: 4rem; }
  .hero__content { max-width: 560px; }
}

@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero__content { max-width: 100%; margin: 0 auto; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__image { aspect-ratio: 16/9; max-height: 340px; }
  .vorteile__grid { grid-template-columns: repeat(2, 1fr); }
  .dl__grid { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .how-it-works__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-block { grid-template-columns: 1fr; gap: 2rem; }
  .service-block--reverse { direction: ltr; }
  .projects__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .navbar__links, .navbar__phone { display: none; }
  .navbar__mobile-toggle { display: flex; }
  .navbar__cta .btn { display: none; }
}

@media (max-width: 640px) {
  section { padding: clamp(2.5rem, 5vw, 3.5rem) 0; }
  .navbar__logo img { height: 34px; }
  .hero { min-height: auto; padding: 6rem 0 2.5rem; }
  .hero__image { display: none; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__subtitle { font-size: 1rem; }
  .vorteile__grid { grid-template-columns: 1fr; gap: 1rem; }
  .dl__grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; gap: 1rem; }
  .ba-slider { aspect-ratio: 4/5; max-width: 400px; margin: 0 auto; }
  .how-it-works__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .service-block { gap: 1.5rem; margin-bottom: 3rem; }
  .service-block__image { aspect-ratio: 16/10; }
  .page-hero { padding: 6rem 0 2rem; }
  .page-hero h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .gold-line--center { margin-left: 0; }
}

@media (max-width: 380px) {
  .container { padding: 0 1rem; }
  .how-it-works__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .btn--lg { padding: 0.875rem 1.5rem; font-size: 0.875rem; }
  .hero { padding: 5.5rem 0 2rem; }
}

@media (hover: none) {
  .ba-slider { touch-action: none; }
  .ba-slider__handle::before { width: 44px; height: 44px; }
  .dl-card:hover { transform: none; }
}
