/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --color-base: #0a0a0a;
  --color-surface: #111111;
  --color-surface-2: #1a1a1a;
  --color-accent: #e8622c;
  --color-accent-blue: #1a7bff;
  --color-accent-pink: #d63384;
  --color-gold: #c9a84c;
  --color-red: #e60000;
  --color-text: #f0ede8;
  --color-muted: #8a8a8a;
  --color-border: rgba(240, 237, 232, 0.1);
  --color-hover: rgba(232, 98, 44, 0.15);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-script: 'Caveat', cursive;

  --text-xs: clamp(0.75rem, 1.5vw, 0.875rem);
  --text-sm: clamp(0.875rem, 2vw, 1rem);
  --text-base: clamp(1rem, 2.5vw, 1.125rem);
  --text-lg: clamp(1.125rem, 3vw, 1.5rem);
  --text-xl: clamp(1.5rem, 4vw, 2rem);
  --text-2xl: clamp(2rem, 5vw, 3rem);
  --text-3xl: clamp(2.5rem, 6vw, 4rem);
  --text-hero: clamp(3.5rem, 10vw, 9rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --section-padding: clamp(3.5rem, 10vw, 10rem);
}

html {
  scroll-behavior: smooth;
}

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

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  touch-action: manipulation; /* Eliminiert 300ms Delay auf Mobile */
}

/* Safe Area Support für moderne Smartphones */
:root {
  --safe-area-bottom: env(safe-area-inset-bottom, 0px);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}

/* ========== SECTION LABEL ========== */
.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: var(--space-6);
}

.section-heading {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-heading span {
  display: inline-block;
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-4) 0;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border-bottom: 1px solid rgba(240, 237, 232, 0.08);
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(240, 237, 232, 0.14);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(1.1) drop-shadow(0 0 8px rgba(240, 237, 232, 0.15));
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: #f0ede8;
  transition: color 0.3s, font-weight 0.15s;
  position: relative;
  letter-spacing: 0.02em;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

@media (hover: hover) {
  .nav__links a:hover {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(240, 237, 232, 0.3);
  }
}

@media (hover: hover) {
  .nav__links a:hover::after {
    width: 100%;
  }
}

.nav__cta {
  font-size: var(--text-sm);
  font-weight: 700;
  padding: 0.65em 1.6em;
  background: var(--color-accent);
  color: #ffffff;
  border-radius: 2px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 2px 12px rgba(232, 98, 44, 0.35);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s, background 0.3s;
}

@media (hover: hover) {
  .nav__cta:hover {
    transform: scale(1.05) translateY(-1px);
    background: #ff7a4a;
    box-shadow: 0 6px 24px rgba(232, 98, 44, 0.55);
  }
}

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 8px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s, opacity 0.3s;
}

/* Alle Striche gleich breit für saubere X-Animation */

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(30px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  padding-bottom: var(--safe-area-bottom);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  letter-spacing: 0.05em;
  color: var(--color-text);
  transition: color 0.3s;
}

@media (hover: hover) {
  .mobile-menu a:hover {
    color: var(--color-accent);
  }
}

@media (max-width: 900px) {
  .nav__links {
    display: none;
  }

  .nav__burger {
    display: flex;
  }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-24);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}

.hero__title .accent {
  color: var(--color-accent);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text);
  max-width: 560px;
  margin-bottom: var(--space-8);
  font-weight: 300;
  line-height: 1.7;
}

.hero__scripture {
  font-family: var(--font-script);
  font-size: var(--text-xl);
  color: var(--color-accent);
  margin-bottom: var(--space-12);
  opacity: 0.9;
}

.hero__ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ========== HERO CENTER LOGO ========== */
.hero__center-logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero__big-logo {
  width: clamp(240px, 70vw, 720px);
  height: auto;
}

/* ========== HERO CONTENT SECTION ========== */
.hero-content-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 10;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.hero-content-section .hcs__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-content-section .hcs__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content-section .hcs__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 1;
}

.hero-content-section .hcs__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.85em 2em;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-101%);
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

@media (hover: hover) {
  .btn:hover::before {
    transform: translateX(0);
  }
}

@media (hover: hover) {
  .btn:hover {
    transform: translateY(-2px);
  }
}

.btn:active {
  transform: translateY(0) scale(0.98); /* Sofortiges Feedback beim Tippen */
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-base);
}

.btn--primary::before {
  background: #ff7a4a;
}

@media (hover: hover) {
  .btn--primary:hover {
    box-shadow: 0 6px 30px rgba(232, 98, 44, 0.4);
  }
}

.btn--outline {
  border: 1px solid var(--color-border);
  color: var(--color-text);
  background: transparent;
}

.btn--outline::before {
  background: rgba(240, 237, 232, 0.08);
}

.btn--ghost {
  padding: 0.85em 0;
  color: var(--color-accent);
  font-weight: 500;
}

.btn--ghost .arrow {
  transition: transform 0.3s;
}

@media (hover: hover) {
  .btn--ghost:hover .arrow {
    transform: translateX(4px);
  }
}

/* ========== MARQUEE / TICKER ========== */
.ticker {
  padding: var(--space-12) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  background: var(--color-surface);
}

.ticker__label {
  text-align: center;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-muted);
  margin-bottom: var(--space-8);
}

.ticker__track {
  display: flex;
  width: max-content;
  gap: var(--space-16);
  align-items: center;
}

.ticker__item {
  flex-shrink: 0;
  height: 50px;
  display: flex;
  align-items: center;
  opacity: 0.6;
  transition: opacity 0.4s;
  filter: brightness(0) invert(1);
}

@media (hover: hover) {
  .ticker__item:hover {
    opacity: 1;
  }
}

.ticker__item img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.ticker__item--text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  letter-spacing: 0.05em;
  white-space: nowrap;
  filter: none;
  color: var(--color-text);
}

.ticker__item--scripture {
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 3rem);
  white-space: nowrap;
  color: #ffffff;
  filter: none;
  padding-right: var(--space-8);
}

/* ========== VISION SECTION ========== */
.vision {
  padding: var(--section-padding) 0;
}

.vision__grid {
  display: grid;
  grid-template-columns: 1.618fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.vision__text p {
  font-size: var(--text-lg);
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: var(--space-8);
  font-weight: 300;
}

.vision__quote {
  font-family: var(--font-script);
  font-size: var(--text-xl);
  color: var(--color-accent);
  line-height: 1.5;
  padding-left: var(--space-6);
  border-left: 2px solid var(--color-accent);
  margin-bottom: var(--space-8);
}

.vision__image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.vision__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter 0.6s, transform 0.6s;
}

@media (hover: hover) {
  .vision__image:hover img {
    filter: grayscale(0%);
    transform: scale(1.03);
  }
}

@media (max-width: 768px) {
  .vision__grid {
    grid-template-columns: 1fr;
  }

  .vision__image {
    order: -1;
  }

  .vision__image img {
    height: 350px;
  }
}

/* ========== COUNTER SECTION ========== */
.counter {
  padding: var(--section-padding) 0;
  background: var(--color-surface);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.counter::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(232, 98, 44, 0.06), transparent 70%);
  pointer-events: none;
}

.counter__heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.counter__sub {
  font-size: var(--text-base);
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto var(--space-16);
  font-weight: 300;
}

.counter__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  max-width: 700px;
  margin: 0 auto var(--space-12);
}

.counter__card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  padding: var(--space-12) var(--space-8);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.counter__card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-blue));
}

.counter__flag {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
}

.counter__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--color-text);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.counter__label {
  font-size: var(--text-sm);
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

@media (max-width: 500px) {
  .counter__grid {
    grid-template-columns: 1fr;
  }
}

/* ========== WERKE / SOLUTION ========== */
.werke {
  padding: var(--section-padding) 0;
}

.werke__intro {
  max-width: 700px;
  margin-bottom: var(--space-16);
}

.werke__intro p {
  font-size: var(--text-lg);
  color: var(--color-muted);
  font-weight: 300;
  line-height: 1.8;
}

.werke__tabs {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
}

.werke__tab {
  font-size: var(--text-sm);
  font-weight: 500;
  padding: 0.7em 1.5em;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  transition: all 0.3s;
  cursor: pointer;
}

.werke__tab.active {
  background: var(--color-accent);
  color: var(--color-base);
  border-color: var(--color-accent);
}

@media (hover: hover) {
  .werke__tab:hover {
    background: var(--color-accent);
    color: var(--color-base);
    border-color: var(--color-accent);
  }
}

.werke__panel {
  display: none;
}

.werke__panel.active {
  display: block;
}

.werke__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.werke__card-image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.werke__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

@media (hover: hover) {
  .werke__card:hover .werke__card-image img {
    transform: scale(1.04);
  }
}

.werke__card-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.werke__card-desc {
  font-size: var(--text-base);
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: var(--space-8);
  font-weight: 300;
}

.werke__card-logo {
  height: 60px;
  margin-bottom: var(--space-6);
  object-fit: contain;
}

@media (max-width: 768px) {
  .werke__card {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .werke__card-image {
    aspect-ratio: 16/9;
  }
}

/* ========== FEATURES GRID ========== */
.features {
  padding: var(--section-padding) 0;
  background: var(--color-surface);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.feature-card {
  padding: var(--space-8);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s;
}

@media (hover: hover) {
  .feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 98, 44, 0.3);
  }
}

.feature-card__icon {
  font-size: 2rem;
  margin-bottom: var(--space-6);
  display: block;
}

.feature-card__icon--img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-3);
}

.feature-card__desc {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.7;
  font-weight: 300;
}

@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
}

/* ========== KULTUR / TESTIMONIALS ========== */
.kultur {
  padding: var(--section-padding) 0;
}

.kultur__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.kultur__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4) var(--space-12);
  text-align: left;
  margin-top: var(--space-12);
  margin-bottom: var(--space-12);
}

.kultur__item {
  font-size: var(--text-sm);
  color: var(--color-muted);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  line-height: 1.6;
}

.kultur__item::before {
  content: '✦';
  color: var(--color-accent);
  flex-shrink: 0;
  font-size: 0.75em;
  margin-top: 3px;
}

@media (max-width: 600px) {
  .kultur__list {
    grid-template-columns: 1fr;
  }
}

/* ========== TEAM / ABOUT ========== */
.team {
  padding: var(--section-padding) 0;
  background: var(--color-surface);
}

.team__grid {
  display: grid;
  grid-template-columns: 1fr 1.618fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.team__image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.team__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

@media (hover: hover) {
  .team__image:hover img {
    transform: scale(1.03);
  }
}

.team__name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.team__role {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: var(--space-8);
}

.team__bio {
  font-size: var(--text-base);
  color: var(--color-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: var(--space-8);
}

.team__partners-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.team__partner {
  font-size: var(--text-sm);
  color: var(--color-muted);
  margin-bottom: var(--space-2);
}

.team__partner a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .team__grid {
    grid-template-columns: 1fr;
  }

  .team__image {
    max-width: 400px;
  }
}

/* ========== GIVE / CTA ========== */
.give {
  padding: var(--section-padding) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.give__quote {
  font-family: var(--font-script);
  font-size: var(--text-xl);
  color: var(--color-muted);
  max-width: 650px;
  margin: 0 auto var(--space-4);
  line-height: 1.5;
}

.give__ref {
  font-size: var(--text-sm);
  color: var(--color-accent);
  margin-bottom: var(--space-12);
}

.give .section-heading {
  margin-bottom: var(--space-6);
}

.give__desc {
  font-size: var(--text-base);
  color: var(--color-muted);
  max-width: 500px;
  margin: 0 auto var(--space-8);
  font-weight: 300;
}

/* ========== KONTAKT ========== */
.kontakt {
  padding: var(--section-padding) 0;
  background: var(--color-surface);
}

.kontakt__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
}

.kontakt__heading {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: var(--space-6);
}

.kontakt__text {
  font-size: var(--text-base);
  color: var(--color-muted);
  font-weight: 300;
  margin-bottom: var(--space-8);
  line-height: 1.8;
}

.kontakt__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.kontakt__info-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--text-base);
}

.kontakt__info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.kontakt__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.kontakt__input,
.kontakt__textarea {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  padding: var(--space-4);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  color: var(--color-text);
  transition: border-color 0.3s;
  outline: none;
}

.kontakt__input:focus,
.kontakt__textarea:focus {
  border-color: var(--color-accent);
}

.kontakt__textarea {
  min-height: 140px;
  resize: vertical;
}

@media (max-width: 768px) {
  .kontakt__form button[type="submit"] {
    margin-bottom: var(--space-8);
  }
}

/* Honeypot Field */
.hp-field {
  display: none !important;
  visibility: hidden !important;
}

/* Form Status Message */
.form-status {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  min-height: 1.5em;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-status.success {
  opacity: 1;
  color: #4ade80;
}

.form-status.error {
  opacity: 1;
  color: #f87171;
}

@media (max-width: 768px) {
  .kontakt__grid {
    grid-template-columns: 1fr;
  }
}

/* ========== FAQ ========== */
.faq {
  padding: var(--section-padding) 0;
}

.faq__list {
  max-width: 800px;
  margin: var(--space-12) auto 0;
}

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

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) 0;
  font-size: var(--text-base);
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
}

@media (hover: hover) {
  .faq__question:hover {
    color: var(--color-accent);
  }
}

.faq__icon {
  font-size: 1.5rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: var(--space-4);
}

.faq__item.open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.65, 0, 0.35, 1), padding 0.4s;
}

.faq__item.open .faq__answer {
  max-height: 300px;
  padding-bottom: var(--space-6);
}

.faq__answer p {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.8;
  font-weight: 300;
}

/* ========== FINAL CTA ========== */
.final-cta {
  padding: var(--section-padding) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232, 98, 44, 0.08), transparent 70%);
  pointer-events: none;
}

.final-cta .section-heading {
  max-width: 800px;
  margin: 0 auto var(--space-6);
}

.final-cta__sub {
  font-size: var(--text-base);
  color: var(--color-muted);
  max-width: 550px;
  margin: 0 auto var(--space-8);
  font-weight: 300;
}

/* ========== FOOTER ========== */
.footer {
  padding: var(--space-8) 0;
  border-top: 1px solid var(--color-border);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4) var(--space-6);
  list-style: none;
}

.footer__links a {
  font-size: var(--text-xs);
  color: var(--color-muted);
  transition: color 0.3s;
}

@media (hover: hover) {
  .footer__links a:hover {
    color: var(--color-text);
  }
}

.footer__copy {
  font-size: var(--text-xs);
  color: var(--color-muted);
  width: 100%;
  text-align: center;
  margin-top: var(--space-4);
}

@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    justify-content: center;
    gap: var(--space-6);
    padding-bottom: var(--safe-area-bottom); /* Platz für Home-Indikator */
  }
  
  .footer__links {
    justify-content: center;
    gap: var(--space-1) var(--space-4);
  }
  
  .footer__links li {
    flex: 1 1 40%; /* Erzeugt ein sauberes 2-Spalten-Gefühl auf kleinen Screens */
    text-align: center;
  }
  
  .footer__links a {
    padding: var(--space-3) 0; /* UX: Bessere Treffsicherheit für Finger */
    display: block;
    font-size: var(--text-sm);
  }
}

/* ========== LANGUAGE SWITCHER ========== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: var(--space-4);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(240, 237, 232, 0.1);
  border-radius: 3px;
  padding: 3px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0.35em 0.65em;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

@media (hover: hover) {
  .lang-btn:hover {
    color: var(--color-text);
    background: rgba(240, 237, 232, 0.08);
  }
}

.lang-btn.active {
  color: #fff;
  background: var(--color-accent);
  font-weight: 700;
}

.lang-flag {
  font-size: 1rem;
  line-height: 1;
}

.lang-code {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}

/* Mobile language switcher (inside mobile menu) */
.lang-switcher--mobile {
  margin: var(--space-8) 0 0;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(240, 237, 232, 0.15);
  padding: 4px;
  gap: 4px;
}

.lang-switcher--mobile .lang-btn {
  padding: 0.55em 1em;
  font-size: 0.8rem;
  gap: 6px;
}

.lang-switcher--mobile .lang-flag {
  font-size: 1.2rem;
}

.lang-switcher--mobile .lang-code {
  font-size: 0.78rem;
}

/* Hide desktop switcher on mobile, show mobile one */
@media (max-width: 900px) {
  .nav__inner .lang-switcher:not(.lang-switcher--mobile) {
    display: none;
  }
}

/* ========== ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-muted);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

.scroll-indicator__line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-muted), transparent);
}

/* ========== NEWSLETTER POPUP ========== */
.newsletter-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
}

.newsletter-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  padding: clamp(var(--space-8), 6vw, var(--space-12));
  max-width: 500px;
  width: 100%;
  position: relative;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  text-align: center;
  transform: translateY(40px) scale(0.95);
}

.newsletter-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--color-accent), transparent 60%);
  z-index: -1;
  opacity: 0.2;
  border-radius: 4px;
}

.newsletter-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  font-size: 1.5rem;
  color: var(--color-muted);
  transition: color 0.3s;
  z-index: 10;
}

@media (hover: hover) {
  .newsletter-close:hover {
    color: var(--color-accent);
  }
}

.newsletter-content {
  position: relative;
  z-index: 1;
}

.newsletter-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
  display: block;
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  letter-spacing: 0.05em;
}

.newsletter-subtitle {
  font-size: var(--text-base);
  color: var(--color-muted);
  margin-bottom: var(--space-8);
  font-weight: 300;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.newsletter-input {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 1em 1.25em;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  border-radius: 2px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 15px rgba(232, 98, 44, 0.15);
}

.newsletter-submit {
  width: 100%;
  justify-content: center;
}

.newsletter-success {
  display: none;
  color: var(--color-accent);
  font-weight: 500;
  margin-top: var(--space-4);
}

@media (max-width: 768px) {

  /* Prevent iOS auto-zoom on form inputs */
  input,
  textarea,
  select {
    font-size: 16px !important;
  }
}