/* ═══════════════════════════════════════════════════════════
   LOKALE SCHRIFTEN — Montserrat Variable Font (v31)
   Dateien: fonts/Montserrat.woff2 (latin)
            fonts/Montserrat-ext.woff2 (latin-ext, Umlaute)
═══════════════════════════════════════════════════════════ */

/* latin-ext (ä, ö, ü, ß, é …) */
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat-ext.woff2') format('woff2');
  font-weight: 200 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
                 U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF,
                 U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
                 U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat.woff2') format('woff2');
  font-weight: 200 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC,
                 U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
                 U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
                 U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ═══════════════════════════════════════════════════════════
   Mairose Klein Real Estate Management — style.css
   CI: Olive #626A56 · Text #3B3B3B · Bg #EBEAEA · White #FFFFFF
   Font: Montserrat
   ═══════════════════════════════════════════════════════════ */

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

/* ─── VARIABLES ─────────────────────────────────────────── */
:root {
  --mk-olive:       #626A56;
  --mk-olive-mid:   #7a8368;
  --mk-olive-light: rgba(98,106,86,0.12);
  --mk-text:        #3B3B3B;
  --mk-text-muted:  #888880;
  --mk-bg-light:    #EBEAEA;
  --mk-white:       #FFFFFF;
  --mk-black:       #000000;

  --max-w:     1200px;
  --pad-x:     72px;
  --section-y: 120px;
  --nav-h:     88px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── BASE ───────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  color: var(--mk-text);
  background: var(--mk-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section-pad {
  padding: var(--section-y) 0;
}

/* ─── SHARED TYPOGRAPHY ──────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--mk-olive);
  margin-bottom: 24px;
}

.section-title {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--mk-text);
}

.section-title em {
  font-style: normal;
  color: var(--mk-olive);
  font-weight: 200;
}

.olive-rule {
  width: 48px;
  height: 1.5px;
  background: var(--mk-olive);
  margin: 32px 0 0;
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.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; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes linePulse {
  0%, 100% { opacity: 0.25; }
  50%       { opacity: 0.8; }
}


/* Scroll-Anker: verhindert, dass der fixe Header Überschriften verdeckt */
#team,
#leistungen,
#referenzen,
#kontakt {
  scroll-margin-top: 96px;
}
/* ─── NAVIGATION ─────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(98,106,86,0.1);
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.nav-logo img {
  height: 64px;
  width: auto;
  filter: none;
  transition: opacity 0.3s;
}

.nav-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mk-text);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--mk-olive);
  transition: width 0.35s var(--ease);
}

.nav-links a:hover { color: var(--mk-olive); }
.nav-links a:hover::after { width: 100%; }

/* Scrolled: etwas stärkerer Schatten */
#nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 rgba(98,106,86,0.15);
}
#nav.scrolled .nav-hamburger span {
  background: var(--mk-text);
}

.nav-logo {
  line-height: 0;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 48px;
  list-style: none;
}

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--mk-text);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}


.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  padding: 40px var(--pad-x) 48px;
  border-top: 1px solid rgba(98,106,86,0.15);
  flex-direction: column;
  gap: 32px;
  z-index: 199;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mk-text);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mk-bg-light);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px var(--pad-x) 100px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Eyebrow — schlicht, getrennt durch Punkte */
.hero-eyebrow {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(59,59,59,0.5);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeIn 0.8s 0.2s var(--ease) forwards;
}

/* Olive-Akzentbalken über der Überschrift */
.hero-bar {
  width: 56px;
  height: 3px;
  background: var(--mk-olive);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeIn 0.6s 0.3s var(--ease) forwards;
}

/* Hauptüberschrift: satt in Olive als farblicher Anker */
.hero-title {
  font-size: clamp(38px, 5.5vw, 76px);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--mk-olive);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s 0.45s var(--ease) forwards;
  max-width: 860px;
}

.hero-title-line { display: block; }

.hero-sub {
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(59,59,59,0.45);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s var(--ease) forwards;
}

.hero-divider {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(98,106,86,0.45), transparent);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeIn 0.8s 0.78s forwards;
}

.hero-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(59,59,59,0.65);
  max-width: 560px;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 0.9s 0.88s var(--ease) forwards;
}

.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s 1.05s var(--ease) forwards;
}

/* Buttons — Basis (auf hellen Hintergründen) */
.btn-primary {
  display: inline-block;
  padding: 14px 44px;
  background: var(--mk-olive);
  color: var(--mk-white);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.25s;
}

.btn-primary:hover {
  background: #4f5645;
  transform: translateY(-2px);
}

.btn-ghost {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mk-text);
  border-bottom: 1px solid rgba(59,59,59,0.3);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
}

.btn-ghost:hover {
  color: var(--mk-olive);
  border-color: var(--mk-olive);
}


/* ─── ÜBER UNS ───────────────────────────────────────────── */
.section-about {
  background: var(--mk-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-left .section-label { display: block; }

.about-lead {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--mk-text);
  margin-top: 32px;
}

.about-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--mk-text-muted);
  margin-top: 24px;
}

.about-right {
  padding-top: 48px;
}

.about-pillar {
  padding: 40px 0;
  border-top: 1px solid rgba(98,106,86,0.2);
}

.about-pillar:last-child {
  border-bottom: 1px solid rgba(98,106,86,0.2);
}

.about-pillar-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--mk-text);
  margin-bottom: 12px;
}

.about-pillar-text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mk-text-muted);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(98,106,86,0.2);
  border-left: 1px solid rgba(98,106,86,0.2);
}

.about-stat {
  padding: 28px 24px;
  border-right: 1px solid rgba(98,106,86,0.2);
  border-bottom: 1px solid rgba(98,106,86,0.2);
  text-align: center;
}

.about-stat-value {
  font-size: 22px;
  font-weight: 300;
  color: var(--mk-olive);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.about-stat-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mk-text-muted);
}

/* ─── LEISTUNGEN ─────────────────────────────────────────── */
.section-services {
  background: var(--mk-olive);
  border-top: none;
}

/* Alle Texte innerhalb der Leistungen-Sektion auf Weiß */
.section-services .section-label {
  color: rgba(255,255,255,0.55);
}

.section-services .section-title {
  color: var(--mk-white);
}

.section-services .section-title em {
  color: rgba(255,255,255,0.7);
}

.section-services .olive-rule {
  background: rgba(255,255,255,0.35);
}

.services-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-header .olive-rule {
  margin: 32px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-left: 1px solid rgba(255,255,255,0.15);
}

.service-card {
  padding: 60px 48px;
  border-right: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  transition: background 0.4s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  background: rgba(255,255,255,0.07);
}

.service-number {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
  display: block;
}

.service-name {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--mk-white);
  margin-bottom: 20px;
  line-height: 1.3;
  min-height: 3em;
  display: flex;
  align-items: flex-start;
}

.service-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.65);
  flex: 1;
}

.service-line {
  position: absolute;
  bottom: 0; left: 48px;
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.5);
  transition: width 0.4s var(--ease);
}

.service-card:hover .service-line {
  width: calc(100% - 96px);
}

/* ─── ANSATZ ─────────────────────────────────────────────── */
.section-approach {
  background: var(--mk-bg-light);
  border-top: 1px solid rgba(98,106,86,0.12);
}

.approach-header {
  text-align: center;
  margin-bottom: 80px;
}

.approach-header .olive-rule {
  margin: 32px auto 0;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(98,106,86,0.15);
  border-left: 1px solid rgba(98,106,86,0.15);
}

.approach-item {
  padding: 52px 40px;
  border-right: 1px solid rgba(98,106,86,0.15);
  border-bottom: 1px solid rgba(98,106,86,0.15);
}

.approach-roman {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--mk-olive);
  margin-bottom: 24px;
  display: block;
}

.approach-title {
  font-size: 16px;
  font-weight: 400;
  color: var(--mk-text);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.approach-text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mk-text-muted);
}

/* ─── TEAM ───────────────────────────────────────────────── */
.section-team {
  background: var(--mk-white);
  border-top: 1px solid rgba(98,106,86,0.12);
}

.team-header {
  text-align: center;
  margin-bottom: 80px;
}

.team-header .olive-rule {
  margin: 32px auto 0;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  display: flex;
  flex-direction: column;
}

.team-photo-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--mk-bg-light);
}

.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(100%);
  transition: filter 0.6s var(--ease), transform 0.6s var(--ease);
}

.team-card:hover .team-photo-wrap img {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.team-info {
  padding: 28px 0 0;
  border-top: 1px solid rgba(98,106,86,0.2);
  margin-top: 24px;
}

.team-name {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--mk-text);
  margin-bottom: 6px;
}

.team-role {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mk-olive);
  margin-bottom: 16px;
}

.team-bio {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mk-text-muted);
}
.team-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  color: rgba(59,59,59,0.4);
  transition: color 0.3s var(--ease);
}

.team-linkedin:hover {
  color: var(--mk-olive);
}

.team-linkedin-icon {
  width: 20px;
  height: 20px;
}



.team-quote {
  margin-top: 72px;
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.team-quote-mark {
  font-size: 64px;
  font-weight: 200;
  color: var(--mk-olive);
  line-height: 0.5;
  margin-bottom: 28px;
  display: block;
  opacity: 0.4;
}

.team-quote-text {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--mk-text);
  font-style: italic;
  letter-spacing: 0.01em;
}

/* ─── REFERENZEN ─────────────────────────────────────────── */
.section-references {
  background: var(--mk-white);
  border-top: 1px solid rgba(98,106,86,0.12);
}

.references-header {
  text-align: center;
  margin-bottom: 80px;
}

.references-header .olive-rule {
  margin: 32px auto 0;
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reference-card {
  position: relative;
  overflow: hidden;
}

.reference-photo-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--mk-bg-light);
}

.reference-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.6s var(--ease), transform 0.6s var(--ease);
}

.reference-card:hover .reference-photo-wrap img {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.reference-overlay {
  position: absolute;
  inset: 0;
  background: rgba(98,106,86,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.5s var(--ease);
}

.reference-card:hover .reference-overlay {
  background: rgba(98,106,86,0.78);
}

.reference-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease) 0.08s, transform 0.4s var(--ease) 0.08s;
}

.reference-card:hover .reference-overlay-inner {
  opacity: 1;
  transform: translateY(0);
}

.reference-project {
  display: block;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 200;
  letter-spacing: 0.12em;
  color: var(--mk-white);
  line-height: 1;
  margin-bottom: 14px;
}

.reference-service {
  display: block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}



/* Honeypot — für Menschen unsichtbar, Bots füllen es aus */
.cf-honeypot {
  display: none !important;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}

/* ─── KONTAKTFORMULAR ────────────────────────────────────── */
.contact-form {
  width: 100%;
  max-width: 680px;
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cf-row {
  display: grid;
  gap: 24px;
}

.cf-row--2 {
  grid-template-columns: 1fr 1fr;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cf-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.cf-input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--mk-white);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
  -webkit-appearance: none;
}

.cf-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.cf-input:focus {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.1);
}

.cf-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
}

/* DSGVO-Checkbox */
.cf-consent {
  margin-top: 4px;
}

.cf-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
}

.cf-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cf-checkbox-custom {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  margin-top: 2px;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
}

.cf-checkbox-label input[type="checkbox"]:checked + .cf-checkbox-custom {
  background: rgba(255,255,255,0.2);
  border-color: var(--mk-white);
}

.cf-checkbox-label input[type="checkbox"]:checked + .cf-checkbox-custom::after {
  content: '';
  position: absolute;
  top: 2px; left: 4px;
  width: 5px; height: 9px;
  border: 1.5px solid var(--mk-white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.cf-checkbox-text {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.cf-link {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.cf-link:hover {
  color: var(--mk-white);
}

.cf-submit {
  align-self: center;
  cursor: pointer;
  border: none;
  font-family: var(--font);
}

/* ─── KONTAKT ────────────────────────────────────────────── */
.section-contact {
  background: var(--mk-olive);
  padding: var(--section-y) 0;
}

.contact-inner {
  text-align: center;
}

.section-contact .section-label {
  color: rgba(255,255,255,0.55);
}

.contact-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--mk-white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.contact-sub {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(235,234,234,0.65);
  max-width: 520px;
  margin: 0 auto 56px;
}

.contact-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mk-white);
  padding: 14px 40px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background 0.3s, border-color 0.3s, transform 0.25s;
}

.contact-link:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.contact-link-icon {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--mk-bg-light);
  border-top: 1px solid rgba(98,106,86,0.15);
  padding: 88px var(--pad-x) 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(98,106,86,0.15);
}

.footer-col-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mk-olive);
  margin-bottom: 18px;
}

.footer-logo img {
  height: 64px;
  width: auto;
  filter: none;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.footer-logo:hover img {
  opacity: 1;
}

.footer-address {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--mk-text);
  font-style: normal;
  margin-bottom: 10px;
}

.footer-email {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: var(--mk-text);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-email:hover {
  color: var(--mk-olive);
}

.footer-col--legal .footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(59,59,59,0.6);
  transition: color 0.3s;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--mk-olive);
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: center;
}

.footer-copy {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(59,59,59,0.45);
  text-align: center;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root {
    --pad-x: 48px;
    --section-y: 96px;
  }

  .about-grid {
    gap: 56px;
  }

  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card {
    padding: 48px 36px;
  }
}

@media (max-width: 768px) {
  :root {
    --pad-x: 28px;
    --section-y: 72px;
    --nav-h: 72px;
  }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .nav-logo img { height: 48px; }

  .hero-pills {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .hero-pill {
    border-right: none !important;
    padding: 0 12px;
  }

  .hero-eyebrow {
    text-align: center;
  }

  .eyebrow-sep {
    display: none;
  }

  .eyebrow-item {
    display: block;
    margin-bottom: 6px;
  }

  .eyebrow-item:last-child {
    margin-bottom: 0;
  }

  .hero-title {
    font-size: clamp(26px, 7vw, 44px);
  }

  .hero-title-line {
    display: block;
  }

  .contact-title {
    font-size: clamp(20px, 5.5vw, 36px);
  }

  .ct-line {
    display: block;
  }

  .hero-desc { font-size: 14px; }

  .hero-cta {
    flex-direction: column;
    gap: 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .service-card {
    padding: 40px 32px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .approach-item {
    padding: 36px 28px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    border-left: none;
  }

  .service-card {
    border-left: 1px solid rgba(255,255,255,0.15);
  }

  .references-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cf-row--2 {
    grid-template-columns: 1fr;
  }

  .contact-links {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  footer {
    padding: 64px var(--pad-x) 48px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 48px;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
}

/* ─── TOUCH-GERÄTE: Referenzen immer sichtbar ───────────── */
/* hover: none trifft präzise alle Touch-Displays            */
@media (hover: none) {
  .reference-photo-wrap img {
    filter: grayscale(0%);
  }

  .reference-overlay {
    background: rgba(98,106,86,0.72);
  }

  .reference-overlay-inner {
    opacity: 1;
    transform: translateY(0);
  }
}
