/* ============================================================
   Q-ESTATE IMMOBILIEN – Premium Stylesheet
   Design: Charcoal-Navy + Warm Gold · DM Sans + DM Serif
   Mobile-First · Alle Breakpoints
   ============================================================ */

/* ── Custom Properties ────────────────────────────────────── */
:root {
  --ink:         #060f1e;
  --navy:        #0a1628;
  --navy-2:      #0d1f38;
  --navy-3:      #1a3060;
  --gold:        #c8a84b;
  --gold-2:      #d4b86a;
  --gold-pale:   #f7f0de;
  --white:       #ffffff;
  --off:         #fafaf8;
  --gray-50:     #f4f6fa;
  --gray-100:    #e8ecf2;
  --gray-200:    #d0d7e4;
  --gray-400:    #8a96aa;
  --gray-600:    #4a5568;
  --text:        #111827;
  --text-2:      #4b5563;

  --font-sans:    'DM Sans', system-ui, -apple-system, sans-serif;
  --font-serif:   'DM Serif Display', Georgia, serif;

  --nav-h:       72px;
  --r:           8px;
  --r-lg:        16px;
  --r-xl:        24px;

  --sh-xs: 0 1px 4px rgba(6,15,30,.06);
  --sh-sm: 0 2px 10px rgba(6,15,30,.08);
  --sh-md: 0 8px 28px rgba(6,15,30,.12);
  --sh-lg: 0 20px 56px rgba(6,15,30,.16);

  --ease:     cubic-bezier(.4,0,.2,1);
  --dur:      220ms;
  --max-w:    1200px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ── Container ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 2.25rem;
  border-radius: var(--r);
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  min-height: 50px;
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}

.btn--accent {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--accent:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  box-shadow: 0 6px 24px rgba(200,168,75,.4);
  transform: translateY(-2px);
  color: var(--navy);
}

.btn--outline {
  background: transparent;
  color: rgba(255,255,255,.88);
  border-color: rgba(255,255,255,.3);
}
.btn--outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.65);
  color: #fff;
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--dark:hover {
  background: var(--navy-3);
  border-color: var(--navy-3);
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
  color: var(--white);
}

.btn--full { width: 100%; }

/* ── Reveal ───────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal--d1 { transition-delay: .1s; }
.reveal--d2 { transition-delay: .2s; }
.reveal--d3 { transition-delay: .3s; }
.reveal--d4 { transition-delay: .4s; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Logo ─────────────────────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo__mark { width: 40px; height: 40px; flex-shrink: 0; }
.logo__mark svg { width: 100%; height: 100%; }
.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__name {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.01em;
}
.logo__sub {
  font-size: .68rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── Header ───────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--dur) var(--ease);
}
.header.scrolled { box-shadow: var(--sh-md); }

.nav__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1rem;
}

.nav { display: flex; align-items: center; gap: 0; }

.nav__list {
  display: flex;
  align-items: center;
  gap: .1rem;
}

.nav__link {
  font-size: .84rem;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: .02em;
  padding: .55rem .9rem;
  border-radius: var(--r);
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav__link:hover { color: var(--navy); background: var(--gray-50); }
.nav__link--active { color: var(--navy); }

.nav__link--cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: .55rem 1.35rem;
  margin-left: .75rem;
  border-radius: var(--r);
}
.nav__link--cta:hover {
  background: var(--gold-2) !important;
  color: var(--navy) !important;
  box-shadow: 0 4px 16px rgba(200,168,75,.35);
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r);
  padding: 9px;
  min-width: 44px;
  min-height: 44px;
  flex-shrink: 0;
  cursor: pointer;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.nav__toggle:hover { background: var(--gray-50); border-color: var(--gray-400); }
.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__geo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-block: clamp(3.5rem, 9vw, 6rem);
}

.hero__content { max-width: 680px; }

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.hero__eyebrow-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -.01em;
  margin-bottom: 1.5rem;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__lead {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.75);
  line-height: 1.85;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Stats bar */
.hero__stats {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 1.5rem 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: fit-content;
  max-width: 100%;
  gap: 0;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 2rem;
  text-align: center;
}
.hero__stat:first-child { padding-left: 0; }
.hero__stat:last-child  { padding-right: 0; }

.hero__stat-val {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .35rem;
}
.hero__stat-val span { font-size: 1.4rem; }

.hero__stat-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
}

.hero__stat-sep {
  width: 1px;
  background: rgba(255,255,255,.12);
  align-self: stretch;
  flex-shrink: 0;
  margin-block: .25rem;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: clamp(1.25rem, 5vw, 2.5rem);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(200,168,75,.6), transparent);
  animation: scrollLine 2.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ── Section Helpers ──────────────────────────────────────── */
.section { padding-block: clamp(4rem, 9vw, 7rem); }
.section--dark { background: var(--navy); }
.section--gray { background: var(--gray-50); }

.sec-head {
  text-align: center;
  max-width: 660px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}
.sec-head--light .sec-tag { color: var(--gold-2); }

.sec-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.sec-tag--light { color: var(--gold-2); }

.sec-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -.01em;
  margin-bottom: 1.1rem;
}
.sec-title em { font-style: italic; color: var(--gold); }
.sec-title--light { color: var(--white); }
.sec-title--light em { color: var(--gold-2); }

.sec-desc {
  font-size: clamp(.9rem, 2vw, 1rem);
  color: var(--text-2);
  line-height: 1.8;
}
.sec-desc--light { color: rgba(255,255,255,.6); }

/* ── Services Grid ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--gray-100);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.svc {
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: background var(--dur) var(--ease);
}
.svc:hover { background: var(--off); }

.svc--wide {
  grid-column: span 1;
}

.svc__inner {
  padding: 2.5rem 2rem;
  position: relative;
  z-index: 1;
}

.svc__num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: .75rem;
  transition: color var(--dur) var(--ease);
}
.svc:hover .svc__num { color: var(--gold-pale); }

.svc__icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.svc__icon svg { width: 100%; height: 100%; }

.svc__inner h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .65rem;
  line-height: 1.3;
}

.svc__inner p {
  font-size: .875rem;
  color: var(--text-2);
  line-height: 1.75;
}

.svc__accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .4s var(--ease);
}
.svc:hover .svc__accent { transform: scaleY(1); }

/* ── Benefits ─────────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit {
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg);
  padding: 2.25rem 2rem;
  overflow: hidden;
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.benefit:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(200,168,75,.25);
  transform: translateY(-5px);
}

.benefit__bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.benefit:hover .benefit__bar { opacity: 1; }

.benefit__icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.benefit__icon svg { width: 100%; height: 100%; }

.benefit h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .6rem;
  line-height: 1.3;
}

.benefit p {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
}

/* ── Process ──────────────────────────────────────────────── */
.process {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
  margin-inline: auto;
}

.process__line {
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(200,168,75,.1));
}

.process__step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding-bottom: 2.5rem;
  position: relative;
}
.process__step:last-child { padding-bottom: 0; }

.process__dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: var(--sh-sm);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.process__dot span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold);
  transition: color var(--dur) var(--ease);
}
.process__step:hover .process__dot {
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(200,168,75,.15);
}
.process__step:hover .process__dot span { color: var(--navy); }

.process__body {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 1.75rem 2rem;
  flex: 1;
  box-shadow: var(--sh-xs);
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.process__step:hover .process__body {
  box-shadow: var(--sh-md);
  border-color: var(--gold-pale);
}

.process__tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

.process__body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.3;
}

.process__body p {
  font-size: .875rem;
  color: var(--text-2);
  line-height: 1.75;
}

/* ── About ────────────────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__card {
  border-radius: var(--r-xl);
  overflow: hidden;
}

.about__card--main {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  padding: 2rem;
}
.about__card--main svg { width: 100%; height: auto; }

.about__card--accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 160px;
  box-shadow: var(--sh-lg);
}

.about__stat-mini {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.about__stat-num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.about__stat-lbl {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

.about__text .sec-title { margin-bottom: 1.25rem; }
.about__text p {
  color: var(--text-2);
  font-size: .95rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.about__text p:last-of-type { margin-bottom: 1.75rem; }

.about__list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2.25rem;
}
.about__list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
}
.about__list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── Contact ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.cinfo__block {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 2.25rem 2rem;
}

.cinfo__block h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.cinfo__items { display: flex; flex-direction: column; gap: 1.75rem; }

.cinfo__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.cinfo__item svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: .15rem;
}
.cinfo__item div { display: flex; flex-direction: column; gap: .2rem; }
.cinfo__item strong {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.cinfo__item span,
.cinfo__item a {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  line-height: 1.55;
}
.cinfo__item a:hover { color: var(--gold); }

/* Form */
.contact-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.cform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cform__group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.cform__group label {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.cform__group label span { color: var(--gold); }
.cform__opt {
  font-size: .7rem;
  color: rgba(255,255,255,.3) !important;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.cform__group input,
.cform__group textarea {
  padding: .85rem 1.15rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  font-size: 1rem;
  color: var(--white);
  background: rgba(255,255,255,.05);
  resize: vertical;
  width: 100%;
  min-height: 50px;
  transition: border-color var(--dur) var(--ease),
              background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.cform__group input::placeholder,
.cform__group textarea::placeholder { color: rgba(255,255,255,.22); }
.cform__group input:focus,
.cform__group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 0 3px rgba(200,168,75,.15);
}

.cform__group--check {
  flex-direction: row;
  align-items: flex-start;
  gap: .75rem;
}
.cform__group--check input[type="checkbox"] {
  margin-top: .2rem;
  flex-shrink: 0;
  accent-color: var(--gold);
  width: 18px;
  height: 18px;
  min-height: unset;
  cursor: pointer;
}
.cform__group--check label {
  font-size: .82rem;
  font-weight: 400;
  color: rgba(255,255,255,.48);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.55;
}
.cform__group--check label a {
  color: var(--gold);
  text-decoration: underline;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer { background: var(--ink); }

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: clamp(3rem, 7vw, 5rem);
}

.footer__brand .footer__logo { margin-bottom: 1.1rem; }
.footer__brand p {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  line-height: 1.75;
  max-width: 300px;
}
.footer__brand .logo__name { color: rgba(255,255,255,.85); }

.footer__col h4 {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1.25rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer__col a {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  transition: color var(--dur) var(--ease);
  display: inline-block;
  padding-block: .1rem;
  min-height: 32px;
  display: flex;
  align-items: center;
}
.footer__col a:hover { color: var(--gold); }
.footer__col li { font-size: .85rem; color: rgba(255,255,255,.4); line-height: 1.65; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-block: 1.35rem;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: .78rem; color: rgba(255,255,255,.28); }
.footer__links { display: flex; gap: 1.75rem; }
.footer__links a {
  font-size: .78rem;
  color: rgba(255,255,255,.32);
  transition: color var(--dur) var(--ease);
}
.footer__links a:hover { color: var(--gold); }

/* ── Legal Pages ──────────────────────────────────────────── */
.legal-page {
  padding-top: calc(var(--nav-h) + clamp(2.5rem, 6vw, 4rem));
  padding-bottom: clamp(3rem, 8vw, 6rem);
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2.5rem;
  min-height: 44px;
  transition: gap var(--dur) var(--ease), color var(--dur) var(--ease);
}
.legal-back:hover { gap: .8rem; color: var(--gold); }
.legal-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--gray-100);
}
.legal-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: .5rem;
}
.legal-header p { color: var(--text-2); font-size: .9rem; }
.legal-body { max-width: 760px; }
.legal-body h2 {
  font-size: 1.15rem; font-weight: 700; color: var(--navy);
  margin-top: 2.5rem; margin-bottom: .75rem;
}
.legal-body h3 {
  font-size: .98rem; font-weight: 700; color: var(--navy);
  margin-top: 1.75rem; margin-bottom: .5rem;
}
.legal-body p {
  color: var(--text-2); margin-bottom: .85rem;
  font-size: .93rem; line-height: 1.8;
}
.legal-body ul { list-style: disc; padding-left: 1.5rem; margin-bottom: .85rem; }
.legal-body ul li { color: var(--text-2); font-size: .93rem; margin-bottom: .35rem; }
.legal-body a { color: var(--navy); text-decoration: underline; }
.legal-body a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE – MOBILE FIRST
   ============================================================ */

/* ── ≤ 1100px ─────────────────────────────────────────────── */
@media screen and (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__brand p { max-width: 100%; }
}

/* ── ≤ 960px ──────────────────────────────────────────────── */
@media screen and (max-width: 960px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .about__visual { max-width: 480px; margin-inline: auto; }
  .about__card--accent { right: 0; bottom: -1rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── ≤ 768px ──────────────────────────────────────────────── */
@media screen and (max-width: 768px) {
  :root { --nav-h: 62px; }

  /* Nav → Hamburger */
  .nav__list {
    display: none !important;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,.99);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem;
    gap: 0;
    overflow-y: auto;
    border-top: 1px solid var(--gray-100);
    z-index: 999;
  }
  .nav__list.open { display: flex !important; }
  .nav__list li { border-bottom: 1px solid var(--gray-100); }
  .nav__list li:last-child { border-bottom: none; }
  .nav__link {
    padding: 1rem .5rem;
    font-size: 1.05rem;
    border-radius: 0;
    background: none !important;
    min-height: 56px;
    width: 100%;
  }
  .nav__link--cta {
    margin-left: 0;
    margin-top: 1rem;
    background: var(--gold) !important;
    color: var(--navy) !important;
    border-radius: var(--r);
    justify-content: center;
  }
  .nav__toggle { display: flex !important; }

  /* Hero */
  .hero__content { max-width: 100%; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .hero__stats {
    width: 100%;
    max-width: 100%;
    padding: 1.25rem 1rem;
    justify-content: center;
    flex-wrap: wrap;
    gap: .75rem;
  }
  .hero__stat { padding-inline: 1rem; flex: 1; min-width: 80px; }
  .hero__stat-sep { display: none; }
  .hero__scroll-hint { display: none; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; }

  /* About */
  .about__card--accent { position: static; margin-top: 1rem; }

  /* Footer */
  .footer__top { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* ── ≤ 480px ──────────────────────────────────────────────── */
@media screen and (max-width: 480px) {
  .hero__title { font-size: 2rem; line-height: 1.12; }
  .hero__lead { font-size: .95rem; }
  .hero__stats { padding: 1rem .75rem; }
  .hero__stat { padding-inline: .5rem; }
  .hero__stat-val { font-size: 1.75rem; }
  .hero__stat-label { font-size: .62rem; }
  .hero__eyebrow { font-size: .68rem; }

  .sec-title { font-size: 1.75rem; }
  .section { padding-block: 2.75rem; }

  .svc__inner { padding: 1.5rem 1.25rem; }
  .benefit { padding: 1.5rem 1.25rem; }

  .cform__row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.25rem; }
  .cinfo__block { padding: 1.5rem 1.25rem; }

  .process__step { gap: 1.25rem; }
  .process__body { padding: 1.25rem 1.5rem; }

  .about__visual { max-width: 100%; }
}

/* ── ≤ 360px ──────────────────────────────────────────────── */
@media screen and (max-width: 360px) {
  .logo__sub { display: none; }
  .hero__title { font-size: 1.75rem; }
  .btn { padding: .8rem 1.5rem; font-size: .82rem; }
  .hero__stats { display: none; }
}

/* ── Touch: Hover deaktivieren ────────────────────────────── */
@media (hover: none) {
  .svc:hover,
  .benefit:hover,
  .btn--accent:hover,
  .btn--dark:hover {
    transform: none;
    box-shadow: none;
  }
  .svc:hover .svc__accent { transform: scaleY(0); }
  .benefit:hover .benefit__bar { opacity: 0; }
}
