:root {
  --navy: #0f1923;
  --navy-mid: #1a2a38;
  --navy-light: #243447;
  --cream: #f5f0e8;
  --cream-light: #faf7f2;
  --gold: #b8922a;
  --gold-light: #d4a843;
  --gold-pale: #e8d5a3;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-mid: #4a5568;
  --text-light: #8a9bb0;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 17.5px; }

body {
  font-family: var(--font-body);
  background: var(--cream-light);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── HEADER ─────────────────────────────────────────── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184, 146, 42, 0.12);
  transition: background 0.3s ease;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.22em;
  color: var(--navy);
  text-transform: uppercase;
}

.logo-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
  text-align: center;
}

.logo-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 3px 0;
}

nav { display: flex; align-items: center; gap: 2.5rem; }

nav a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.25s;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

nav a:hover { color: var(--gold); }
nav a:hover::after { width: 100%; }

/* ─── SPRACHSCHALTER ──────────────────────────────────── */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-left: 0.6rem;
  padding-left: 1.8rem;
  border-left: 1px solid rgba(184,146,42,0.35);
}

nav .lang-switch a { letter-spacing: 0.12em; }
nav .lang-switch a.active { color: var(--gold); pointer-events: none; }
nav .lang-switch a.active::after { width: 100%; }

.mobile-lang {
  display: flex;
  gap: 2.2rem;
  padding-top: 0.3rem;
}

.mobile-menu .mobile-lang a { border-bottom: none; padding-bottom: 0; }
.mobile-menu .mobile-lang a.active { color: var(--gold); }

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--navy);
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(20px);
  padding: 2rem;
  flex-direction: column;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(184,146,42,0.15);
  z-index: 99;
}

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

.mobile-menu a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(184,146,42,0.1);
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  height: 100vh;
  min-height: 640px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--cream-light);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at 20% 50%, rgba(184,146,42,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  padding: clamp(5rem, 8vw, 8rem) clamp(1.5rem, 5vw, 6rem);
  animation: fadeUp 1s ease both;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-eyebrow-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3.25rem, 6vw, 6rem);
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 0.2em;
  letter-spacing: -0.01em;
}

.hero h1 .gold-dot {
  color: var(--gold);
}

.hero-accent {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-pale));
  margin: 2rem 0;
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 420px;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  position: relative;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateX(4px);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(184,146,42,0.6);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-pale);
  transform: translateX(4px);
}

.btn-arrow {
  font-size: 1rem;
  transition: transform 0.3s;
}

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

.hero-image {
  height: 100%;
  position: relative;
  overflow: hidden;
  animation: fadeIn 1.2s ease 0.3s both;
}

/* ─── HERO SLIDESHOW (Crossfade + Ken Burns) ─── */
.hero-slideshow { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
  will-change: opacity;
}

.hero-slide.is-active { opacity: 1; }

.hero-slide-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.88) contrast(1.05);
  transform: scale(1.03);
  animation: kenburns 16s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-slide:nth-child(2) .hero-slide-img { animation-delay: -5s; }
.hero-slide:nth-child(3) .hero-slide-img { animation-delay: -10s; }

@keyframes kenburns {
  from { transform: scale(1.03) translate(0, 0); }
  to   { transform: scale(1.16) translate(-2%, -2%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide-img { animation: none; transform: none; }
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245,240,232,0.35) 0%, transparent 40%),
              linear-gradient(180deg, transparent 60%, rgba(15,25,35,0.2) 100%);
}

.hero-image-badge {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  background: rgba(245,240,232,0.94);
  backdrop-filter: blur(12px);
  border-left: 2px solid var(--gold);
  padding: 1rem 1.5rem;
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(15,25,35,0.35);
}

.hero-image-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.hero-image-badge-text {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 0.3rem;
}

/* ─── LEISTUNGEN ──────────────────────────────────────── */
.leistungen {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 8vw, 8rem);
  background: var(--cream-light);
  position: relative;
}

.section-header { text-align: center; margin-bottom: clamp(3rem, 6vw, 5rem); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
}

.section-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 540px;
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(184,146,42,0.15);
  margin-top: clamp(3rem, 5vw, 4rem);
}

.card {
  padding: clamp(2rem, 4vw, 3.5rem);
  border-right: 1px solid rgba(184,146,42,0.15);
  position: relative;
  transition: background 0.3s ease;
  cursor: default;
}

.card:last-child { border-right: none; }

.card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-pale));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.card:hover { background: rgba(184,146,42,0.03); }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.8rem;
  color: var(--gold);
  opacity: 0.85;
}

.card-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1rem;
}

.card-accent {
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.2rem;
}

.card-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-mid);
}

/* ─── ÜBER UNS ────────────────────────────────────────── */
.ueber-uns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.ueber-content {
  background: var(--navy);
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 6vw, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ueber-content::before {
  content: '';
  position: absolute;
  top: -40%; left: -20%;
  width: 60%; height: 80%;
  background: radial-gradient(ellipse, rgba(184,146,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.ueber-content .eyebrow { color: var(--gold); }

.ueber-content .section-title {
  color: var(--cream);
  text-align: left;
  max-width: none;
}

.ueber-content .hero-accent { margin: 2rem 0; }

.ueber-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  line-height: 1.9;
  color: rgba(245,240,232,0.7);
  margin-bottom: 0.8rem;
}

.ueber-text + .ueber-text { margin-bottom: 2.5rem; }

.ueber-image {
  position: relative;
  overflow: hidden;
}

.ueber-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.75) saturate(0.9);
  transition: transform 8s ease;
}

.ueber-image:hover img { transform: scale(1.04); }

.ueber-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,25,35,0.4) 0%, transparent 50%);
}

/* ─── TEAM SECTION ───────────────────────────────────── */
.team-section {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 8vw, 8rem);
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  gap: 2.5rem;
  margin-top: clamp(3rem, 5vw, 4rem);
  justify-content: center;
}

.team-card {
  position: relative;
  overflow: hidden;
  cursor: default;
}

.team-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%) brightness(0.95);
  transition: transform 0.6s ease, filter 0.4s ease;
  display: block;
}

.team-card:hover .team-card-image img {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(1);
}

.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(15, 25, 35, 0.92) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover .team-card-overlay { opacity: 1; }

.team-overlay-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.team-overlay-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.team-overlay-link svg { color: var(--gold); flex-shrink: 0; }
.team-overlay-link:hover { color: var(--gold-pale); }

.team-card-info {
  padding: 1.2rem 0 0;
  border-bottom: 2px solid rgba(184,146,42,0.15);
  transition: border-color 0.3s;
}

.team-card:hover .team-card-info { border-color: var(--gold); }

.team-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.team-role {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── KONTAKT SECTION ────────────────────────────────── */
.kontakt-section {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 8vw, 8rem);
  background: var(--cream-light);
}

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

.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.kontakt-info-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.kontakt-info-item svg { color: var(--gold); flex-shrink: 0; }

.kontakt-info-item a {
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.kontakt-info-item a:hover { color: var(--gold); }

/* ─── PHILOSOPHIE SECTION ─────────────────────────────── */
.philosophie-section {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 8vw, 8rem);
  background: var(--cream-light);
}

.philosophie-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.philosophie-image {
  position: relative;
  overflow: hidden;
  border-left: 2px solid var(--gold);
  aspect-ratio: 4 / 3;
}

.philosophie-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.97) saturate(0.96);
  transition: transform 0.7s ease;
}

.philosophie-image:hover img { transform: scale(1.04); }

.philosophie-lead {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 1.2rem;
}

.philosophie-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 2.2rem;
}

.philosophie-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.philosophie-point {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: 1.2rem;
  border-left: 2px solid rgba(184, 146, 42, 0.3);
}

.philosophie-point-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
}

.philosophie-point-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ─── FORM ─── */
.kontakt-form {
  background: var(--white);
  border: 1px solid rgba(184,146,42,0.15);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 4px 40px rgba(184,146,42,0.05);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
  position: relative;
}

.form-row .form-group { margin-bottom: 0; }

.form-group label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
}

.required { color: var(--gold); }

.optional {
  font-weight: 300;
  font-size: 0.65rem;
  color: var(--text-light);
  text-transform: none;
  letter-spacing: 0;
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream-light);
  border: 1px solid rgba(184,146,42,0.2);
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
  resize: vertical;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(74,85,104,0.4);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,146,42,0.08);
  background: var(--white);
}

.form-group input.invalid,
.form-group textarea.invalid {
  border-color: #c0392b;
}

.field-error {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #c0392b;
  display: none;
}

.field-error.visible { display: block; }

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.form-privacy {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.6;
}

.form-privacy a {
  color: var(--gold);
  text-decoration: none;
}

.form-privacy a:hover { text-decoration: underline; }

.form-success {
  display: none;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: rgba(184,146,42,0.07);
  border-left: 3px solid var(--gold);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--navy);
}

.form-success.visible { display: flex; }

.form-error-msg {
  display: none;
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: rgba(192,57,43,0.05);
  border-left: 3px solid #c0392b;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.88rem;
  color: #c0392b;
}

.form-error-msg.visible { display: block; }
.form-error-msg a { color: #c0392b; }

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 8vw, 8rem);
  color: rgba(245,240,232,0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(184,146,42,0.12);
}

.footer-brand .logo-name { color: var(--cream); }
.footer-brand .logo-sub { color: var(--gold); }
.footer-brand .logo { align-items: flex-start; }

.footer-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(245,240,232,0.45);
  margin-top: 1.2rem;
}

.footer-col-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col a,
.footer-col p,
.footer-col address {
  display: block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.83rem;
  line-height: 2;
  color: rgba(245,240,232,0.5);
  text-decoration: none;
  font-style: normal;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold-pale); }

.social-links {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184,146,42,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,240,232,0.5) !important;
  transition: all 0.25s !important;
  text-decoration: none;
}

.social-link svg {
  width: 16px;
  height: 16px;
  display: block;
}

.social-link:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  background: rgba(184,146,42,0.08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  color: rgba(245,240,232,0.3);
  letter-spacing: 0.05em;
}

.footer-links { display: flex; gap: 2rem; }

.footer-links a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  color: rgba(245,240,232,0.35);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-pale); }

/* ─── ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  nav { display: none; }
  .nav-toggle { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
  }

  .hero-content {
    padding: 3rem 1.5rem 3rem;
    order: 1;
  }

  .hero-image {
    height: 55vw;
    min-height: 260px;
    order: 0;
  }

  .hero h1 { font-size: clamp(2.4rem, 8vw, 3.5rem); }

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

  .card { border-right: none; border-bottom: 1px solid rgba(184,146,42,0.15); }
  .card:last-child { border-bottom: none; }

  .ueber-uns {
    grid-template-columns: 1fr;
  }

  .ueber-image {
    height: 60vw;
    min-height: 280px;
    order: -1;
  }

  .kontakt-inner {
    grid-template-columns: 1fr;
  }

  .philosophie-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .leistungen { padding: 4rem 1.5rem; }
  .kontakt-section { padding: 3rem 1.5rem; }
  .form-footer { flex-direction: column; align-items: flex-start; }
  footer { padding: 3rem 1.5rem; }
}
