/* ============================================
   NERMIN IBUSHOSKI – GARTEN & LANDSCHAFTSBAU
   ✦ Moderne Editorial — Cormorant × Montserrat ✦
   2025 Bold Minimalism — Craft-Forward
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ===========================
   DESIGN TOKENS
   =========================== */
:root {
  /* Backgrounds */
  --bg:            #F5F1EB;
  --bg-elevated:   #EDE8DE;
  --bg-card:       #FFFFFF;
  --bg-dark:       #1C3426;

  /* Brand */
  --forest:        #1C3426;
  --forest-mid:    #2D5240;
  --forest-pale:   #4A7860;
  --gold:          #9B7A3E;
  --gold-light:    #C4A35A;

  /* Text */
  --text:          #1A1815;
  --text-muted:    #6B6259;
  --text-pale:     #9A9188;

  /* UI */
  --border:        #D8D2C8;
  --border-strong: #B8B0A4;

  /* Legacy aliases (keep for inline styles in HTML) */
  --glow:          #4A7860;
  --glow-dim:      rgba(74, 120, 96, 0.12);
  --cream:         #F5F1EB;
  --white:         #FFFFFF;

  /* Type */
  --serif: 'Cormorant', 'Georgia', serif;
  --sans:  'Montserrat', system-ui, sans-serif;

  /* Radius */
  --radius-sm: 3px;
  --radius:    8px;
  --radius-lg: 16px;

  /* Easing */
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container:    1280px;
  --section-pad:  clamp(5rem, 10vw, 9rem);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ===========================
   ACCESSIBILITY
   =========================== */

/* Skip-Navigation */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--forest);
  color: var(--bg);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.875rem;
  transition: top 0.2s;
  white-space: nowrap;
}
.skip-link:focus { top: 1rem; }

/* Nur für Screenreader sichtbar */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Sichtbarer Fokusring für Tastatur-Nutzer */
:focus-visible {
  outline: 2px solid var(--forest-pale);
  outline-offset: 3px;
  border-radius: 2px;
}
/* Fokusring für Formularelemente innerhalb des dunklen Cards */
.contact__form-glass :focus-visible {
  outline-color: var(--gold-light);
}

/* ===========================
   TYPOGRAPHY BASE
   =========================== */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.05;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* Cormorant needs larger display sizes than most serifs */
h1 { font-size: clamp(3.5rem, 9vw, 7.5rem); }
h2 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.65rem); }

p { max-width: 65ch; }

/* ===========================
   LAYOUT
   =========================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
}

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

/* Kill glassmorphism on every element that uses it */
.glass--strong,
.glass--medium,
.glass--light,
[class*="glass"] {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* ===========================
   PRELOADER
   =========================== */
/* ===========================
   PRELOADER — Split Curtain
   =========================== */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  visibility: visible;
  pointer-events: all;
}

/* Vorhänge — jeweils halbe Bildschirmhöhe */
.preloader__curtain {
  position: absolute; left: 0; width: 100%;
  background: var(--forest);
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1) 0.2s;
}
.preloader__curtain--top    { top: 0;    height: 51%; }
.preloader__curtain--bottom { bottom: 0; height: 51%; }

/* Exit-Zustand: Vorhänge fahren auseinander */
.preloader.done {
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s 1.15s;
}
.preloader.done .preloader__curtain--top    { transform: translateY(-100%); }
.preloader.done .preloader__curtain--bottom { transform: translateY(100%); }
.preloader.done .preloader__content {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Zentrierter Inhalt */
.preloader__content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}

/* Logo-Marke */
.preloader__mark {
  width: 52px; height: 67px;
  margin-bottom: 1.6rem;
  animation: plMark 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}
.preloader__mark svg { width: 100%; height: 100%; }

/* Markenname */
.preloader__brand {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.2rem;
  margin-bottom: 1.8rem;
}
.preloader__name {
  font-family: var(--serif);
  font-size: 2rem; font-weight: 500;
  color: var(--bg);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: plFadeUp 0.55s var(--ease-out) 0.55s both;
}
.preloader__sub {
  font-family: var(--serif);
  font-size: 0.85rem; font-weight: 300; font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.22em;
  animation: plFadeUp 0.55s var(--ease-out) 0.7s both;
}

/* Gold-Trennlinie */
.preloader__divider {
  height: 1px; width: 0;
  background: linear-gradient(to right, transparent, var(--gold-light), transparent);
  margin-bottom: 1.8rem;
  animation: plLine 0.65s var(--ease-out) 0.9s both;
}

/* Großer Prozentzähler */
.preloader__pct {
  font-family: var(--sans);
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  min-width: 3.5ch;
  animation: plFadeUp 0.45s var(--ease-out) 1.05s both;
}

/* Fortschrittsbalken */
.preloader__bar {
  width: 110px; height: 1px;
  background: rgba(245, 241, 235, 0.15);
  overflow: hidden;
  animation: plFadeUp 0.45s var(--ease-out) 1.1s both;
}
.preloader__fill {
  height: 100%; width: 0%;
  background: var(--gold-light);
  transition: width 0.1s linear;
}

/* Keyframes */
@keyframes plMark {
  from { opacity: 0; transform: scale(0.55) translateY(14px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}
@keyframes plFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes plLine {
  from { width: 0;     opacity: 0; }
  to   { width: 130px; opacity: 1; }
}

/* ===========================
   SCROLL PROGRESS
   =========================== */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; z-index: 1001;
  width: 0%;
  background: var(--gold);
}

/* ===========================
   HEADER
   =========================== */
.kn-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1.25rem 0;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}

.kn-header.scrolled {
  background: var(--bg);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.875rem 0;
}

.kn-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}

/* Logo — SVG mark + two-line wordmark */
.kn-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: #F5F1EB;
  transition: color 0.3s var(--ease), opacity 0.3s;
}
.kn-logo:hover { opacity: 0.8; }
.kn-header.scrolled .kn-logo { color: var(--text); }

.kn-logo__mark {
  width: 22px;
  height: 29px;
  flex-shrink: 0;
  transition: color 0.3s;
}

.kn-logo__text {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.2;
}

.kn-logo__name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.kn-logo__sub {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-top: 1px;
}
.kn-header.scrolled .kn-logo__sub { opacity: 0.45; }

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

.kn-phone {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 500;
  color: rgba(245, 241, 235, 0.7);
  transition: color 0.3s;
}
.kn-phone:hover { color: #F5F1EB; }
.kn-phone svg { flex-shrink: 0; }
.kn-header.scrolled .kn-phone { color: var(--text-muted); }
.kn-header.scrolled .kn-phone:hover { color: var(--forest); }

.kn-cta {
  display: inline-flex; align-items: center;
  padding: 0.6rem 1.25rem;
  background: var(--gold-light);
  color: var(--text);
  font-size: 0.875rem; font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background 0.25s, transform 0.2s;
}
.kn-cta:hover { background: var(--gold); transform: translateY(-1px); }
.kn-header.scrolled .kn-cta {
  background: var(--forest);
  color: #F5F1EB;
}
.kn-header.scrolled .kn-cta:hover { background: var(--forest-mid); }

/* Menu toggle — pill button with animated lines */
.kn-btn {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.875rem 0.5rem 0.75rem;
  border: 1.5px solid rgba(245, 241, 235, 0.28);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.88);
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.kn-btn:hover {
  border-color: rgba(245, 241, 235, 0.55);
  background: rgba(245, 241, 235, 0.07);
}
.kn-header.scrolled .kn-btn {
  border-color: var(--border);
  color: var(--text-muted);
}
.kn-header.scrolled .kn-btn:hover {
  border-color: var(--border-strong);
  color: var(--text);
  background: rgba(28, 52, 38, 0.04);
}

/* Animated 3-line hamburger */
.kn-btn__lines {
  display: flex;
  flex-direction: column;
  gap: 4.5px;
  width: 18px;
  flex-shrink: 0;
}
.kn-btn__lines span {
  display: block;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: width 0.3s var(--ease), transform 0.35s var(--ease), opacity 0.25s;
  transform-origin: center;
}
.kn-btn__lines span:nth-child(1) { width: 18px; }
.kn-btn__lines span:nth-child(2) { width: 11px; }
.kn-btn__lines span:nth-child(3) { width: 18px; }

/* Morphs to × when open */
.kn-btn.is-open .kn-btn__lines span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  width: 18px;
}
.kn-btn.is-open .kn-btn__lines span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.kn-btn.is-open .kn-btn__lines span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  width: 18px;
}

.kn-btn__label {
  /* label text is already in the button via HTML */
}

/* ===========================
   FULLSCREEN MENU
   =========================== */
.kn-menu-section { position: relative; }

.kn-overlay-wrap {
  position: fixed; inset: 0; z-index: 800;
  pointer-events: none; visibility: hidden;
}
.kn-overlay-wrap.is-open {
  pointer-events: all; visibility: visible;
}

.kn-overlay-bg {
  position: absolute; inset: 0;
  background: rgba(26, 24, 21, 0.45);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.kn-overlay-wrap.is-open .kn-overlay-bg { opacity: 1; }

.kn-menu {
  position: absolute; top: 0; right: 0;
  width: min(480px, 100%); height: 100%;
  background: var(--forest);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-out);
  overflow-y: auto;
}
.kn-overlay-wrap.is-open .kn-menu { transform: translateX(0); }

.kn-menu__bg { display: none; }
.kn-panel { display: none; }

.kn-menu__content {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 3rem 3rem;
}

.kn-list { list-style: none; margin-bottom: 3rem; }

.kn-list__item {
  border-top: 1px solid rgba(245, 241, 235, 0.1);
  opacity: 0; transform: translateX(16px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.kn-list__item:last-child { border-bottom: 1px solid rgba(245, 241, 235, 0.1); }
.kn-overlay-wrap.is-open .kn-list__item {
  opacity: 1; transform: translateX(0);
}
.kn-list__item:nth-child(1) { transition-delay: 0.05s; }
.kn-list__item:nth-child(2) { transition-delay: 0.10s; }
.kn-list__item:nth-child(3) { transition-delay: 0.15s; }
.kn-list__item:nth-child(4) { transition-delay: 0.20s; }
.kn-list__item:nth-child(5) { transition-delay: 0.25s; }
.kn-list__item:nth-child(6) { transition-delay: 0.30s; }

.kn-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  color: rgba(245, 241, 235, 0.8);
  transition: color 0.2s, padding-left 0.35s var(--ease);
}
.kn-link:hover { color: #F5F1EB; padding-left: 0.5rem; }
.kn-link__hover { display: none; }

.kn-menu__footer {
  display: flex; gap: 2rem; flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 241, 235, 0.1);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.45s 0.3s var(--ease), transform 0.45s 0.3s var(--ease);
}
[data-menu-fade] {
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.45s 0.3s var(--ease), transform 0.45s 0.3s var(--ease);
}
.kn-overlay-wrap.is-open .kn-menu__footer,
.kn-overlay-wrap.is-open [data-menu-fade] {
  opacity: 1; transform: translateY(0);
}

.kn-menu__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.35);
  margin-bottom: 0.6rem;
  max-width: none;
}

.kn-menu__contact { display: flex; flex-direction: column; gap: 0.4rem; }
.kn-menu__contact a {
  font-size: 0.875rem;
  color: rgba(245, 241, 235, 0.6);
  transition: color 0.2s;
}
.kn-menu__contact a:hover { color: #F5F1EB; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--sans);
  font-size: 0.9375rem; font-weight: 500;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  border: 1.5px solid transparent;
}

.btn__arrow { transition: transform 0.25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--glow {
  background: var(--forest);
  color: #F5F1EB;
  border-color: var(--forest);
}
.btn--glow:hover {
  background: var(--forest-mid);
  border-color: var(--forest-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28, 52, 38, 0.22);
}
.btn--pulse { /* no animation — keep class for JS compat */ }

.btn--glass {
  background: transparent;
  color: #F5F1EB;
  border-color: rgba(245, 241, 235, 0.35);
}
.btn--glass:hover {
  background: rgba(245, 241, 235, 0.1);
  border-color: rgba(245, 241, 235, 0.65);
}

.btn--gold {
  background: var(--gold);
  color: #F5F1EB;
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 122, 62, 0.28);
}

/* ===========================
   EYEBROW
   =========================== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-pale);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

/* ===========================
   TAGS
   =========================== */
.tag {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(245, 241, 235, 0.55);
  background: rgba(245, 241, 235, 0.08);
  border: 1px solid rgba(245, 241, 235, 0.15);
  border-radius: 2px;
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  height: 100dvh;
  display: flex; flex-direction: column;
  overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    /* Deckt Watermark unten rechts komplett ab */
    radial-gradient(ellipse 50% 40% at 98% 98%, rgba(2, 7, 3, 1) 0%, rgba(2, 7, 3, 1) 50%, transparent 100%),
    /* Breitere sanfte Abdunklung unten rechts */
    radial-gradient(ellipse 65% 45% at 92% 95%, rgba(4, 12, 7, 0.92) 0%, transparent 100%),
    /* Haupt-Verlauf */
    linear-gradient(
      108deg,
      rgba(4, 12, 7, 0.97) 0%,
      rgba(4, 12, 7, 0.93) 38%,
      rgba(8, 20, 12, 0.80) 65%,
      rgba(8, 20, 12, 0.42) 100%
    );
}

.hero__content {
  position: relative; z-index: 1; flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: clamp(4.5rem, 7vh, 5.5rem);
  padding-bottom: 0;
}

.hero__text {
  max-width: none;
  width: 100%;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 3rem;
}

.hero .eyebrow {
  color: var(--gold-light);
}
.hero .eyebrow::before { background: var(--gold-light); }

.hero__title {
  font-family: var(--serif);
  font-size: clamp(3rem, min(9vw, 14vh), 8.5rem);
  font-weight: 500;
  color: #F5F1EB;
  line-height: 0.97;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold-light);
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

.word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.word__inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.85s var(--ease);
}
.hero__title.animated .word__inner {
  transform: translateY(0);
}
/* Stagger each word */
.hero__title.animated .word:nth-child(1) .word__inner { transition-delay: 0.05s; }
.hero__title.animated .word:nth-child(2) .word__inner { transition-delay: 0.14s; }
.hero__title.animated .word:nth-child(3) .word__inner { transition-delay: 0.23s; }
.hero__title.animated .word:nth-child(4) .word__inner { transition-delay: 0.32s; }
.hero__title.animated .word:nth-child(5) .word__inner { transition-delay: 0.41s; }

/* Large editorial background number — modern 2025 */
.hero__content::before {
  content: '01';
  position: absolute;
  bottom: 5rem; /* above the stats bar */
  right: -1rem;
  font-family: var(--serif);
  font-size: clamp(8rem, 22vw, 20rem);
  font-weight: 700;
  font-style: italic;
  color: rgba(245, 241, 235, 0.045);
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.hero__sub {
  font-size: 1.125rem;
  color: rgba(245, 241, 235, 0.72);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 58ch;
}

.hero__btns {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero__trust {
  font-size: 0.8rem;
  color: rgba(245, 241, 235, 0.38);
  max-width: none;
  margin-bottom: 0;
}

/* Hero stats bar — full-width horizontal strip */
.hero__card {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  background: rgba(4, 12, 7, 0.55) !important;
  border: none !important;
  border-top: 1px solid rgba(245, 241, 235, 0.12) !important;
  border-radius: 0;
  /* Bleed to container edges */
  padding: 1.1rem clamp(1.5rem, 4vw, 3rem);
  margin-inline: calc(-1 * clamp(1.5rem, 4vw, 3rem));
  width: calc(100% + 2 * clamp(1.5rem, 4vw, 3rem));
}

.hero__stats {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 0;
  margin-bottom: 0;
}

.hero__stat {
  flex: 1;
  padding: 0 1.5rem 0 0;
  border-right: 1px solid rgba(245, 241, 235, 0.1);
  padding-right: 1.5rem;
  margin-right: 1.5rem;
}
.hero__stat:last-of-type {
  border-right: 1px solid rgba(245, 241, 235, 0.1);
  margin-right: 1.5rem;
}

.hero__stat-num {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 500;
  color: #F5F1EB;
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero__stat-num span {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gold-light);
}

.hero__stat-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.42);
  margin-top: 0.3rem;
}

.hero__card-divider { display: none; }

.hero__card-cta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.hero__card-cta p { display: none; }

.hero__scroll {
  position: relative;
  z-index: 1;
  display: none; /* hide, not needed with new layout */
}
.hero__scroll:hover { color: rgba(245, 241, 235, 0.65); }

.hero__scroll-line {
  width: 1px; height: 44px;
  background: rgba(245, 241, 235, 0.2);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 50%;
  background: rgba(245, 241, 235, 0.6);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(300%); }
}

/* ===========================
   SERVICES — Editorial Split
   =========================== */
.services { background: var(--bg); }

.svc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

/* ---- Left column ---- */
.svc-split__list { }

/* Section header above split — always visible */
.svc-section-header {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.svc-section-header h2 {
  margin: 0.4rem 0 1rem;
}
.svc-section-header h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--forest-pale);
}
.svc-section-header__sub {
  max-width: 52ch;
  color: var(--text-muted);
}
/* Hide old inline header */
.svc-split__header { display: none; }

.svc-split__header {
  margin-bottom: 3.5rem;
}
.svc-split__header h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.08;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}
.svc-split__header h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--forest-pale);
}
.svc-split__header p { color: var(--text-muted); max-width: 42ch; }

.svc-items { border-top: 1px solid var(--border); }

.svc-item {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  align-items: start;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s;
}

.svc-item__num {
  font-family: var(--serif);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-pale);
  padding-top: 0.3rem;
  transition: color 0.3s var(--ease);
}

.svc-item__body { }

.svc-item__body h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0;
  line-height: 1.25;
  transition: color 0.3s var(--ease);
}

.svc-item__body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 0.75rem;
  margin-bottom: 0.875rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s var(--ease), opacity 0.35s var(--ease), margin-top 0.35s;
}

.svc-item__body .svc__tags {
  display: flex; flex-wrap: wrap; gap: 0.35rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s var(--ease), opacity 0.35s var(--ease);
}

/* Active / hover state */
.svc-item--active .svc-item__num,
.svc-item:hover .svc-item__num { color: var(--gold); }

.svc-item--active .svc-item__body h3,
.svc-item:hover .svc-item__body h3 { color: var(--forest); }

.svc-item--active .svc-item__body p {
  max-height: 10rem;
  opacity: 1;
}
.svc-item--active .svc-item__body .svc__tags {
  max-height: 4rem;
  opacity: 1;
}

.svc-item__arrow {
  font-size: 1rem;
  color: var(--gold);
  opacity: 0;
  padding-top: 0.3rem;
  transition: opacity 0.25s, transform 0.35s var(--ease);
}
.svc-item--active .svc-item__arrow,
.svc-item:hover .svc-item__arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* Gold left-border on active item */
.svc-item--active {
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
  margin-left: -1rem;
}

.svc__tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }

/* ---- Right column: sticky image ---- */
.svc-split__visual {
  position: sticky;
  top: 6rem;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elevated);
}

.svc-visual-img {
  position: absolute; inset: 0;
  opacity: 0;
  z-index: 0;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.svc-visual-img--active { opacity: 1; z-index: 1; }
.svc-visual-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.svc-visual__accent {
  position: absolute;
  bottom: -2px; right: -2px;
  width: 40%; height: 40%;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  border-radius: 0 0 var(--radius-lg) 0;
  pointer-events: none;
  opacity: 0.5;
}

/* ===========================
   SERVICES — Responsive show/hide
   =========================== */
@media (min-width: 1025px) {
  .svc-mobile { display: none; }
}
@media (max-width: 1024px) {
  .svc-split { display: none; }
}

/* ===========================
   SERVICES — Mobile tab UX
   =========================== */
.svc-mobile { margin-top: 0; }

.svc-tabs {
  display: flex;
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 3rem;
  padding: 4px;
  gap: 0;
  margin-bottom: 1.75rem;
}

.svc-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0.65rem 0.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 2.5rem;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
  color: var(--text-muted);
}
.svc-tab--active { color: var(--bg); }

.svc-tab__num {
  font-family: var(--font-serif, var(--serif));
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}
.svc-tab__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.svc-tabs__indicator {
  position: absolute;
  top: 4px; bottom: 4px; left: 4px;
  width: calc(33.333% - 4px);
  background: var(--forest);
  border-radius: 2.5rem;
  transition: transform 0.4s cubic-bezier(0.65, 0.01, 0.05, 0.99);
  z-index: 0;
}

.svc-panels { position: relative; }

.svc-panel { display: none; }
.svc-panel--active { display: block; }

.svc-panel__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: 1.5rem;
}
.svc-panel__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-panel__body h3 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 5vw, 1.8rem);
  color: var(--forest);
  margin-bottom: 0.75rem;
}
.svc-panel__body p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}
.svc-panel__body .btn { margin-top: 0.25rem; }

.svc__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.svc-panel--active {
  animation: panelIn 0.4s cubic-bezier(0.65, 0.01, 0.05, 0.99) both;
}

/* btn--forest variant */
.btn--forest {
  background: var(--forest);
  color: var(--bg);
  border: none;
}
.btn--forest:hover { background: var(--forest-mid); }

/* ===========================
   WHY US
   =========================== */
.usps__header {
  max-width: 560px;
  margin-bottom: 3.5rem;
}
.usps__header h2 { margin-bottom: 0.75rem; }
.usps__header p { color: var(--text-muted); }

.usps__list {
  border-top: 1px solid var(--border);
}

.usp-line {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background 0.2s;
}
.usp-line:hover .usp-line__num { color: var(--forest-pale); }

.usp-line__num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--border);
  letter-spacing: -0.03em;
  line-height: 1;
  padding-top: 0;
}

.usp-line__body h3 {
  font-size: 1.1875rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.usp-line__body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* ===========================
   ABOUT
   =========================== */
.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about__img-wrap { position: relative; }

.about__img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
}

.about__badge {
  position: absolute;
  bottom: -1.25rem; right: -1.25rem;
  background: var(--forest);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  border: none !important;
}
.about__badge-num {
  font-family: var(--serif);
  font-size: 2.75rem; font-weight: 500;
  color: #F5F1EB;
  line-height: 1;
  letter-spacing: -0.03em;
}
.about__badge-text {
  font-size: 0.78rem;
  color: rgba(245, 241, 235, 0.58);
  margin-top: 0.25rem; line-height: 1.3;
}

.about__text h2 { margin-bottom: 0.875rem; }

.about__lead {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.about__text > p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about__values {
  display: flex; flex-direction: column; gap: 0.625rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.about__value {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.9375rem; font-weight: 500; color: var(--text);
}
.about__value-line {
  display: block; width: 20px; height: 1.5px;
  background: var(--forest-pale);
  flex-shrink: 0;
}

/* ===========================
   CTA STRIP
   =========================== */
.cta { background: var(--forest); }

.cta__glass {
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem);
  max-width: 640px;
  margin: 0 auto;
  background: transparent !important;
  border: none !important;
}

.cta .eyebrow {
  justify-content: center;
  color: rgba(245, 241, 235, 0.45);
}
.cta .eyebrow::before { background: rgba(245, 241, 235, 0.3); }

.cta h2 { color: #F5F1EB; margin-bottom: 1rem; }
.cta p  { color: rgba(245, 241, 235, 0.68); margin: 0 auto 2rem; }

/* ===========================
   GALLERY — Zoom Parallax
   =========================== */
/* ===========================
   GALLERY — Bento Grid
   =========================== */

/* Section header */
.gallery__header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.gallery__header h2 {
  margin: 0.3rem 0 0;
  line-height: 1.05;
}
.gallery__header h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--forest-pale);
}

/* Bento grid — 4 columns, 3 rows */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, clamp(160px, 18vw, 260px));
  gap: clamp(0.4rem, 0.6vw, 0.75rem);
  grid-template-areas:
    "hero hero  b    c  "
    "hero hero  d    d  "
    "e    e     f    g  ";
}

.gallery__cell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  /* start hidden for JS animation */
  opacity: 0;
  transform: translateY(28px);
}
.gallery__cell.gallery--visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.gallery__cell:nth-child(1) { grid-area: hero; }
.gallery__cell:nth-child(2) { grid-area: b; }
.gallery__cell:nth-child(3) { grid-area: c; }
.gallery__cell:nth-child(4) { grid-area: d; }
.gallery__cell:nth-child(5) { grid-area: e; }
.gallery__cell:nth-child(6) { grid-area: f; }
.gallery__cell:nth-child(7) { grid-area: g; }

/* Images fill cell, crop bottom-right to hide watermarks */
.gallery__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform 0.6s var(--ease);
}
.gallery__cell:hover img {
  transform: scale(1.04);
}

/* Subtle dark overlay on hover */
.gallery__cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,52,38,0.35) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.gallery__cell:hover::after {
  opacity: 1;
}

/* KI disclaimer — below grid */
.gallery__disclaimer {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
  font-size: 0.72rem;
  color: var(--text-pale);
  font-family: var(--sans);
}
.gallery__disclaimer svg { flex-shrink: 0; color: var(--gold); }

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
  .gallery__grid {
    grid-template-rows: repeat(3, clamp(140px, 20vw, 240px));
  }
  .gallery__header-desc { max-width: 26ch; font-size: 0.85rem; }
}

/* Mobile */
@media (max-width: 768px) {
  .gallery__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }
  .gallery__header-desc { max-width: 100%; font-size: 0.88rem; }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "hero hero"
      "b    c   "
      "d    d   "
      "e    e   "
      "f    g   ";
    gap: 0.4rem;
  }

  .gallery__cell:nth-child(1) { grid-area: hero; height: 54vw; }
  .gallery__cell:nth-child(2) { grid-area: b;    height: 42vw; }
  .gallery__cell:nth-child(3) { grid-area: c;    height: 42vw; }
  .gallery__cell:nth-child(4) { grid-area: d;    height: 42vw; }
  .gallery__cell:nth-child(5) { grid-area: e;    height: 42vw; }
  .gallery__cell:nth-child(6) { grid-area: f;    height: 42vw; }
  .gallery__cell:nth-child(7) { grid-area: g;    height: 42vw; }

  .gallery__disclaimer { font-size: 0.68rem; margin-top: 1rem; }
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials__intro {
  max-width: 560px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.testimonials__intro .eyebrow { justify-content: center; }
.testimonials__intro .eyebrow::before { display: none; }
.testimonials__intro h2 { margin-bottom: 0.75rem; }
.testimonials__intro p { margin: 0 auto; color: var(--text-muted); }

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.quote-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.quote-item__stars { margin-bottom: 1rem; }

.quote-item__text {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  letter-spacing: 0.005em;
}

.quote-item__byline { display: flex; flex-direction: column; gap: 0.1rem; }

.quote-item__author {
  font-size: 0.875rem; font-weight: 600;
  color: var(--text);
}
.quote-item__loc {
  font-size: 0.8rem;
  color: var(--text-pale);
}

/* ===========================
   PRICING
   =========================== */
.pricing { background: var(--bg-elevated); }

.pricing__intro {
  max-width: 560px;
  margin-bottom: 3.5rem;
}
.pricing__intro h2 { margin-bottom: 0.75rem; }
.pricing__intro p { color: var(--text-muted); }

.pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.pricing__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.pricing__card:hover {
  border-color: var(--forest-pale);
  box-shadow: 0 6px 24px rgba(28, 52, 38, 0.08);
}

.pricing__card-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(28, 52, 38, 0.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--forest-mid);
  margin-bottom: 0.25rem;
}

.pricing__card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-pale);
}

.pricing__card-price {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1;
  letter-spacing: -0.03em;
}
.pricing__card-price span {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing__card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: auto;
}

.pricing__note {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.25rem 1.5rem;
  background: rgba(155, 122, 62, 0.07);
  border: 1px solid rgba(155, 122, 62, 0.2);
  border-radius: var(--radius-sm);
  margin-bottom: 2.5rem;
}
.pricing__note svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.pricing__note p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: none;
}

.pricing__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn--glass-dark {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--sans);
  font-size: 0.9375rem; font-weight: 500;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  border: 1.5px solid var(--border-strong);
  color: var(--text);
  background: transparent;
}
.btn--glass-dark:hover {
  border-color: var(--forest-pale);
  color: var(--forest);
  background: rgba(28, 52, 38, 0.04);
}

@media (max-width: 1024px) {
  .pricing__cards { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .pricing__cta { flex-direction: column; align-items: flex-start; }
}

/* ===========================
   FAQ
   =========================== */
.faq__new {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.faq__header h2 { margin-bottom: 0.875rem; }
.faq__header p { color: var(--text-muted); }

.faq__items { border-top: 1px solid var(--border); }

.faq__item { border-bottom: 1px solid var(--border); }

.faq__question {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  font-family: var(--sans);
  font-size: 1rem; font-weight: 500;
  color: var(--text);
  text-align: left;
  transition: color 0.2s;
  gap: 1rem; cursor: pointer;
}
.faq__question:hover { color: var(--forest-mid); }

.faq__icon {
  font-size: 1.375rem; font-weight: 300;
  color: var(--text-pale);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease), color 0.2s;
  line-height: 1;
}
.faq__item.active .faq__icon {
  transform: rotate(45deg);
  color: var(--forest-pale);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s var(--ease);
}
.faq__item.active .faq__answer { max-height: 400px; }
.faq__answer-inner { padding: 0 0 1.25rem; }
.faq__answer-inner p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===========================
   CONTACT
   =========================== */
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact__info h2 { margin-bottom: 1rem; }
.contact__info > p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.contact__detail {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact__detail-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--forest-pale);
}
.contact__detail-text { display: flex; flex-direction: column; gap: 0.2rem; padding-top: 0.4rem; }
.contact__detail-text strong {
  font-size: 0.72rem;
  color: var(--text-pale);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact__detail-text a,
.contact__detail-text span {
  font-size: 0.9375rem;
  color: var(--text);
  transition: color 0.2s;
}
.contact__detail-text a:hover { color: var(--forest-mid); }

/* === Formular-Card: dunkel & premium === */
.contact__form-glass {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}
/* Dezente Textur */
.contact__form-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 0%, rgba(196,163,90,0.07) 0%, transparent 60%);
  pointer-events: none;
}

/* Form-Header */
.form__head {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(245,241,235,0.1);
}
.form__title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 500;
  color: var(--bg);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}
.form__sub {
  font-size: 0.82rem;
  color: rgba(196,163,90,0.85);
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Fieldset Reset */
.form__fieldset {
  border: none;
  padding: 0;
  margin: 0 0 0.5rem;
}

.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-bottom: 1rem;
}

.form-group {
  display: flex; flex-direction: column; gap: 0.45rem;
  margin-bottom: 1rem;
}
.form-row .form-group { margin-bottom: 0; }

.form-group label {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(196,163,90,0.85);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.form-group label abbr {
  text-decoration: none;
  color: var(--gold-light);
  margin-left: 0.15em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1.1rem;
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--bg);
  background: rgba(245,241,235,0.07);
  border: 1px solid rgba(245,241,235,0.15);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-light);
  background: rgba(245,241,235,0.1);
  box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.15);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,241,235,0.3); }

.form-group select {
  cursor: pointer;
  color: var(--bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C4A35A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group select option { background: var(--forest); color: var(--bg); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* Submit-Button */
.form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.95rem;
}

/* Status-Meldung */
.form__status:not(:empty) {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-family: var(--sans);
  background: rgba(245,241,235,0.08);
  color: var(--gold-light);
  border: 1px solid rgba(196,163,90,0.4);
}

/* ===========================
   WORK AREA
   =========================== */
.workarea__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.workarea__layout h2 { margin-bottom: 0.875rem; }
.workarea__layout > div > p { color: var(--text-muted); }

.workarea__locations {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 2rem;
}

.workarea__loc {
  padding: 0.4rem 0.875rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.workarea__loc:hover { border-color: var(--forest-pale); color: var(--text); }

.workarea__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #141210;
  color: rgba(245, 241, 235, 0.6);
  padding-top: clamp(3rem, 6vw, 5rem);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 241, 235, 0.08);
}

.footer__brand h3 {
  font-family: var(--serif);
  font-size: 1.75rem; font-weight: 500;
  color: #F5F1EB;
  margin-bottom: 0.25rem;
  letter-spacing: 0.01em;
}
.footer__brand h3 span {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}
.footer__brand p {
  font-size: 0.875rem;
  max-width: 32ch;
  line-height: 1.65;
}

.footer__cols { display: flex; gap: 3rem; }

.footer__col {
  display: flex; flex-direction: column; gap: 0.5rem;
}
.footer__col h4 {
  font-family: var(--sans);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(245, 241, 235, 0.28);
  margin-bottom: 0.5rem;
}
.footer__col a {
  font-size: 0.875rem;
  color: rgba(245, 241, 235, 0.55);
  transition: color 0.2s;
}
.footer__col a:hover { color: #F5F1EB; }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 1.5rem;
  font-size: 0.8rem;
  gap: 1rem; flex-wrap: wrap;
  color: rgba(245, 241, 235, 0.3);
}

.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a {
  color: rgba(245, 241, 235, 0.3);
  transition: color 0.2s;
}
.footer__legal a:hover { color: rgba(245, 241, 235, 0.6); }

/* ===========================
   FLOATING CONTACT BUTTONS
   =========================== */
.float-btns {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}
.float-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  flex-shrink: 0;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}
.float-btn--wa {
  background: #25D366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}
.float-btn--wa:hover { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }
.float-btn--phone {
  background: var(--forest);
  box-shadow: 0 4px 16px rgba(28, 52, 38, 0.35);
  border: 1px solid rgba(196,163,90,0.35);
}
.float-btn--phone:hover { box-shadow: 0 6px 24px rgba(28, 52, 38, 0.5); }
.float-btn svg { width: 24px; height: 24px; }

/* ===========================
   BACK TO TOP
   =========================== */
.btt {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 500;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--forest);
  color: #F5F1EB;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s var(--ease), background 0.2s;
  pointer-events: none;
}
.btt.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.btt:hover { background: var(--forest-mid); }

/* ===========================
   COOKIE BANNER
   =========================== */
.cookie {
  position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 800;
  max-width: 380px;
}

.cookie__inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 32px rgba(26, 24, 21, 0.1);
}

.cookie__text {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.cookie__text a { color: var(--forest-mid); text-decoration: underline; }

.cookie__btns { display: flex; gap: 0.5rem; }

/* ===========================
   MOBILE CTA BAR
   =========================== */
.mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 600;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  gap: 0.75rem;
}

.mobile-cta__btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem;
  font-size: 0.9rem; font-weight: 500;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s;
}
.mobile-cta__btn:active { opacity: 0.8; }

.mobile-cta__btn--call {
  background: var(--forest);
  color: #F5F1EB;
}
.mobile-cta__btn--wa {
  background: #25D366;
  color: white;
}
.mobile-cta.hidden { display: none !important; }

/* ===========================
   REVEAL ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.revealed,
.visible {
  opacity: 1 !important;
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right {
    opacity: 1; transform: none; transition: none;
  }
  .word__inner { transform: none; transition: none; }
}

/* ===========================
   COMPACT HEIGHT (≤820px viewport height)
   Ensures stats bar is always visible on laptops
   =========================== */
@media (max-height: 820px) {
  .hero .eyebrow { display: none; }
  .hero__title { margin-bottom: 1rem; }
  .hero__sub { margin-bottom: 1rem; font-size: 1rem; }
  .hero__btns { margin-bottom: 0.75rem; }
  .hero__text { padding-bottom: 1.5rem; }
}
@media (max-height: 680px) {
  .hero__trust { display: none; }
  .hero__sub { display: none; }
}

/* ===========================
   RESPONSIVE — TABLET (≤1024px)
   =========================== */
@media (max-width: 1024px) {
  .hero__card {
    /* keep visible on tablet — only hide on mobile */
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .hero__stat { flex: 1 0 40%; }
  .hero__card-cta { width: 100%; border-top: 1px solid rgba(245,241,235,0.1); padding-top: 1rem; }

  /* Services split: stack on tablet */
  .svc-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-split__visual { position: relative; top: auto; aspect-ratio: 16/9; order: -1; }

  .about__layout { grid-template-columns: 1fr; }
  .about__img    { aspect-ratio: 16/9; }
  .about__badge  { bottom: 1rem; right: 1rem; }

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

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

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

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

  .footer__top { grid-template-columns: 1fr; }
  .footer__cols { flex-wrap: wrap; }
}

/* ===========================
   RESPONSIVE — MOBILE (≤768px)
   =========================== */
@media (max-width: 768px) {
  .kn-center { display: none; }
  .hero__card { display: none; }

  /* Services: convert tabs to vertical card stack */
  .svc-tabs { display: none; }
  .svc-panel { display: block !important; animation: none !important; }
  .svc-panels {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .svc-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s;
  }
  .svc-panel:hover {
    border-color: var(--forest-pale);
    box-shadow: 0 6px 24px rgba(28, 52, 38, 0.08);
  }
  .svc-panel__img-wrap {
    margin-bottom: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .svc-panel__body {
    padding: 1.5rem;
  }

  /* Text in der Hero-Mitte statt unten ausrichten */
  .hero__text {
    justify-content: center;
    padding-bottom: 0;
  }

  .hero__title { font-size: clamp(2.6rem, 11vw, 4rem); }

  /* Gallery parallax — tablet (handled via mobile block in component CSS) */

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

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

  .footer__cols { flex-direction: column; gap: 2rem; }

  .mobile-cta { display: flex; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
}

/* ===========================
   RESPONSIVE — SMALL (≤480px)
   =========================== */
@media (max-width: 480px) {
  /* Gallery parallax mobile handled in component block above */

  .svc-card { aspect-ratio: 4/3; }

  .svc-item--active { border-left: none; padding-left: 0; margin-left: 0; }
  .svc-item { grid-template-columns: 2rem 1fr auto; gap: 0.875rem; }
  .cookie { left: 1rem; right: 1rem; max-width: none; }
}
