:root {

  --color-primary: #20809b;       
  --color-primary-hover: #1a6a80; 
  --color-primary-light: #7ec8db; 
  
  --bg-base: #ffffff;             
  --bg-warm: #fcfaf7;            
  --bg-sand: #f5f0e6;            
  
  --color-text-main: #3d3832;     
  --color-text-soft: #6b6358;     
  --color-text-muted: #8a8278;    
  
  --color-border: rgba(32, 128, 155, 0.12); 
  
  /* Typography */
  --font-serif: "Playfair Display", serif;
  --font-sans: "DM Sans", sans-serif;
  
  /* Shadows & Organic Shapes */
  --shadow-sm: 0 4px 20px rgba(32, 128, 155, 0.04);
  --shadow-md: 0 12px 32px rgba(32, 128, 155, 0.06);
  --shadow-lg: 0 20px 48px rgba(32, 128, 155, 0.08);
  --shadow-organic: 0 20px 40px -10px rgba(32, 128, 155, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
  
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
}

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

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 56px;
  animation: fadeDown 0.8s ease 0.2s both;
  transition: var(--transition-smooth);
}

nav.nav-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(32, 128, 155, 0.05);
  padding: 14px 56px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #ffffff;
  letter-spacing: 0.01em;
  font-weight: 400;
  transition: color var(--transition-fast);
}

nav.nav-scrolled .logo-text {
  color: var(--color-text-main);
}

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

.nav-links a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
  position: relative;
  padding: 4px 0;
}

nav.nav-scrolled .nav-links a:not(.nav-cta) {
  color: var(--color-text-soft);
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #ffffff;
  transition: width 0.3s ease;
}

nav.nav-scrolled .nav-links a:not(.nav-cta)::after {
  background: var(--color-primary);
}

.nav-links a:not(.nav-cta):hover {
  color: #ffffff;
}

nav.nav-scrolled .nav-links a:not(.nav-cta):hover {
  color: var(--color-primary);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-menu-cta {
  list-style: none;
}

.nav-cta {
  background: #ffffff;
  color: var(--color-text-main);
  padding: 12px 28px;
  border: none;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: var(--transition-smooth);
}

nav.nav-scrolled .nav-cta {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

nav.nav-scrolled .nav-cta:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 6px 20px rgba(32, 128, 155, 0.2);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 110;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background 0.35s ease;
}

nav.nav-scrolled .nav-toggle-bar {
  background: var(--color-text-main);
}

body.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  pointer-events: none;
}

body.nav-open .nav-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.nav-open {
  overflow: hidden;
}

/* ── HERO SECTION (STRICTLY UNCHANGED) ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #1a1a1a;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 22%;
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.3) 35%,
      transparent 58%
    ),
    linear-gradient(to right, rgba(0, 0, 0, 0.45) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, transparent 18%),
    linear-gradient(to left, rgba(0, 0, 0, 0.5) 0%, transparent 30%);
}

.grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  pointer-events: none;
}

.hero-text {
  position: absolute;
  bottom: 72px;
  left: 56px;
  z-index: 10;
  max-width: 560px;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.9rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: -0.01em;
  animation: fadeUp 1s ease 0.4s both;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero-heading .zukunft {
  font-style: italic;
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  margin-top: 18px;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.5;
  animation: fadeUp 1s ease 0.7s both;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1s ease 1.2s both;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  display: block;
}

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

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

@keyframes scrollPulse {
  0% {
    top: -100%;
  }
  50% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}

/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}


/* ── STATEMENT ("BELIEF") SECTION ── */
.belief {
  background: var(--bg-warm);
  padding: 120px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}


.belief-text {
  max-width: 900px;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 400;
  color: var(--color-text-main);
  line-height: 1.25;
  text-align: center;
  position: relative;
  z-index: 1;
}

.belief-text em {
  font-style: italic;
}

.belief-text .belief-highlight {
  font-style: italic;
  color: var(--color-primary);
  position: relative;
}


/* ── PHILOSOPHY ("ÜBER UNS") & LOCATION ("STANDORT") ── */
.philosophie,
.standort {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 64px;
  background: var(--bg-base);
}

.philosophie-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-organic);
  transition: var(--transition-smooth);
  border-radius: 140px 140px 20px 20px;
  object-position: center top;
}

.philosophie-image:hover img {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.standort-image {
  position: relative;
  display: block;
}

.standort-collage {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.standort-photo {
  margin: 0;
  overflow: hidden;
}

.standort-photo img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.standort-photo--main {
  border-radius: 24px;
  box-shadow: var(--shadow-organic);
}

.standort-photo--main img {
  height: 520px;
  border-radius: 24px;
}

.standort-photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.standort-photo--sub {
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.standort-photo--sub img {
  height: 150px;
  border-radius: 12px;
}

.standort-photo:hover img {
  transform: scale(1.03);
}

.standort-photo--main:hover {
  box-shadow: var(--shadow-lg);
}

.philosophie-content,
.standort-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.philosophie-label,
.standort-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.philosophie-heading,
.standort-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 400;
  color: var(--color-text-main);
  line-height: 1.15;
  margin-bottom: 28px;
}

.philosophie-intro {
  margin-bottom: 36px;
  padding-left: 20px;
  border-left: 3px solid rgba(32, 128, 155, 0.35);
}

.philosophie-intro p {
  font-size: 0.95rem;
  color: var(--color-text-soft);
  line-height: 1.7;
}

.philosophie-intro p + p {
  margin-top: 14px;
}

.standort-text p {
  font-size: 0.95rem;
  color: var(--color-text-soft);
  line-height: 1.7;
  margin-bottom: 16px;
}

.standort-text p:last-child {
  margin-bottom: 0;
}

/* Fact Cards */
.philosophie-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.philosophie-fact {
  background: var(--bg-warm);
  border-radius: 12px;
  padding: 22px 20px;
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
}

.philosophie-fact:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  background: var(--bg-base);
}

.philosophie-fact-title {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.philosophie-fact p {
  font-size: 0.88rem;
  color: var(--color-text-soft);
  line-height: 1.5;
}

/* CTA buttons */
.philosophie-cta {
  display: inline-block;
  background: var(--color-primary);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  align-self: flex-start;
}

.philosophie-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(32, 128, 155, 0.2);
}


/* ── OFFER ("ANGEBOT") SECTION ── */
.angebot {
  background: var(--bg-warm);
  padding: 100px 64px 120px;
}

.angebot-inner {
  max-width: 860px;
  margin: 0 auto;
}

.angebot-header {
  text-align: center;
  margin-bottom: 48px;
}

.angebot-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.angebot-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 400;
  color: var(--color-text-main);
  line-height: 1.15;
}

.angebot-overview {
  margin-bottom: 56px;
}

/* Clean stats panel */
.angebot-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.angebot-stat {
  text-align: center;
  padding: 24px 16px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
}

.angebot-stat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.angebot-stat-value {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 6px;
}

.angebot-stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Elegant Quote-style Description */
.angebot-beschreibung {
  padding: 32px 36px;
  background: #ffffff;
  border-radius: 0 16px 16px 0;
  border-left: 3px solid var(--color-primary);
  box-shadow: var(--shadow-organic);
}

.angebot-beschreibung p {
  font-size: 0.95rem;
  color: var(--color-text-soft);
  line-height: 1.7;
  margin: 0 0 16px;
}

.angebot-beschreibung p:last-child {
  margin-bottom: 0;
}

.angebot-subheading {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 24px 0 8px;
}

.angebot-table-heading {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  text-align: center;
}

/* Beautiful Bistro-menu pricing table */
.angebot-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 48px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow-organic);
  border: 1px solid rgba(32, 128, 155, 0.08);
}

.angebot-table {
  width: 100%;
  border-collapse: collapse;
}

.angebot-table thead th {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-align: left;
  padding: 20px 24px 14px;
  border-bottom: 2px solid var(--color-primary);
  background: #ffffff;
}

.angebot-table thead th:last-child {
  text-align: right;
}

.angebot-table tbody tr {
  border-bottom: 1px dashed rgba(61, 56, 50, 0.08);
  transition: background var(--transition-fast);
}

.angebot-table tbody tr:hover {
  background: rgba(32, 128, 155, 0.02);
}

.angebot-table td {
  padding: 20px 24px;
  vertical-align: middle;
}

.angebot-table .at-name {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-text-main);
  line-height: 1.35;
}

.angebot-table .at-time {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: 3px;
  line-height: 1.4;
}

.angebot-table .at-price {
  text-align: right;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  color: var(--color-primary);
  font-weight: 700;
  white-space: nowrap;
}

/* Category group labels */
.angebot-table .at-group td {
  padding: 32px 24px 10px;
  border-bottom: none;
  background: rgba(32, 128, 155, 0.01);
}

.angebot-table .at-group-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.angebot-table .at-sub .at-name {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
}

.angebot-table .at-sub .at-price {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
}

/* Terracotta Note Frame */
.angebot-hinweis {
  margin-top: 36px;
  padding: 24px 28px;
  background: #ffffff;
  border-radius: 0 12px 12px 0;
  border-left: 3px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.angebot-hinweis p {
  font-size: 0.88rem;
  color: var(--color-text-soft);
  line-height: 1.65;
}

.angebot-hinweis strong {
  color: var(--color-text-main);
  font-weight: 700;
}


/* ── TEAM SECTION (PORTRAIT SHOWCASE) ── */
.team {
  background: var(--bg-base);
  padding: 100px 64px 120px;
}

.team-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.team-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.team-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.team-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 400;
  color: var(--color-text-main);
  line-height: 1.15;
  margin-bottom: 16px;
}

.team-heading em {
  font-style: italic;
  color: var(--color-primary);
}

.team-intro {
  font-size: 0.95rem;
  color: var(--color-text-soft);
  line-height: 1.65;
}

/* Team member cards — single column, equal layout */
.team-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

.team-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: start;
  text-align: left;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 32px;
  border: 1px solid rgba(32, 128, 155, 0.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.team-photo {
  border-radius: 80px 12px 80px 80px;
  overflow: hidden;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 200px;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: var(--transition-smooth);
}

.team-card:hover .team-photo img {
  transform: scale(1.03);
}

.team-photo--placeholder {
  background: linear-gradient(160deg, var(--color-primary-light), var(--color-primary));
}

.team-photo--placeholder span {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.team-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-text-main);
  line-height: 1.2;
  margin-bottom: 6px;
}

.team-role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 14px;
  line-height: 1.4;
}

.team-cv {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}

.team-cv li {
  position: relative;
  padding-left: 18px;
  font-size: 0.84rem;
  color: var(--color-text-soft);
  line-height: 1.55;
  margin-bottom: 5px;
}

.team-cv li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

.team-personal {
  font-size: 0.84rem;
  font-style: italic;
  color: var(--color-text-soft);
  line-height: 1.55;
}

/* Association board card */
.team-verein {
  max-width: 720px;
  margin: 64px auto 0;
  padding: 36px 40px;
  background: var(--bg-warm);
  border-radius: 16px;
  border: 1px dashed var(--color-border);
  text-align: center;
}

.team-verein-heading {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--color-text-main);
  margin-bottom: 12px;
}

.team-verein-intro {
  font-size: 0.9rem;
  color: var(--color-text-soft);
  line-height: 1.65;
  margin-bottom: 20px;
}

.team-verein-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.team-verein-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.88rem;
  color: var(--color-text-soft);
  line-height: 1.55;
  margin-bottom: 8px;
}

.team-verein-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

.team-verein-list strong {
  font-weight: 700;
  color: var(--color-text-main);
}

/* Job posting card */
.team-jobs {
  max-width: 800px;
  margin: 88px auto 0;
  padding: 64px 56px;
  background: var(--color-primary);
  border-radius: 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.team-jobs-label {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 18px;
}

.team-jobs-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 20px;
}

.team-jobs-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 26px;
}

.team-jobs-facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 34px;
  padding: 0;
}

.team-jobs-facts li {
  font-size: 0.78rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  padding: 8px 16px;
  border-radius: 100px;
}

.team-jobs-cta {
  display: inline-block;
  background: #ffffff;
  color: var(--color-primary);
  padding: 16px 32px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.team-jobs-cta:hover {
  background: var(--bg-warm);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.team-jobs-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.team-jobs-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.team-jobs-download::before {
  content: "";
  width: 14px;
  height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v12'/%3E%3Cpath d='M7 10l5 5 5-5'/%3E%3Cpath d='M5 21h14'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v12'/%3E%3Cpath d='M7 10l5 5 5-5'/%3E%3Cpath d='M5 21h14'/%3E%3C/svg%3E")
    center / contain no-repeat;
  flex-shrink: 0;
}

.team-jobs-download:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  transform: translateY(-2px);
}


/* ── CONTACT ("KONTAKT") SECTION ── */
.kontakt {
  background: var(--bg-warm);
  padding: 100px 64px;
}

.kontakt-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.kontakt-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.kontakt-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.kontakt-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 400;
  color: var(--color-text-main);
  line-height: 1.15;
  margin-bottom: 16px;
}

.kontakt-intro {
  font-size: 0.95rem;
  color: var(--color-text-soft);
  line-height: 1.65;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.kontakt-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.kontakt-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid rgba(32, 128, 155, 0.04);
}

.kontakt-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.kontakt-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(32, 128, 155, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.kontakt-item:hover .kontakt-item-icon {
  background: var(--color-primary);
}

.kontakt-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition-smooth);
}

.kontakt-item:hover .kontakt-item-icon svg {
  stroke: #ffffff;
}

.kontakt-item-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.kontakt-item-value {
  font-size: 0.95rem;
  color: var(--color-text-main);
  line-height: 1.55;
  font-weight: 500;
}

.kontakt-item-value a {
  color: var(--color-text-main);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.kontakt-item-value a:hover {
  color: var(--color-primary);
}

.kontakt-item-note {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* Framed Map card */
.kontakt-map-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: var(--shadow-lg);
  background: #ffffff;
  min-height: 420px;
  transition: var(--transition-smooth);
}

.kontakt-map-wrap:hover {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

.kontakt-map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.kontakt-map-link {
  display: block;
  text-align: center;
  padding: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  text-decoration: none;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition-smooth);
}

.kontakt-map-link:hover {
  background: #f0f8fa;
}


/* ── FOOTER (RESTORED SLATE BROWN) ── */
.site-footer {
  background: var(--color-text-main);
  padding: 64px 64px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #FAF7F2;
}

.site-footer-main {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px 40px;
  padding-bottom: 48px;
}

.site-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-bottom: 16px;
}

.site-footer-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.site-footer-logo span {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #ffffff;
  line-height: 1.2;
}

.site-footer-tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  max-width: 280px;
}

.site-footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: 20px;
}

.site-footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer-nav a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-fast);
  display: inline-block;
}

.site-footer-nav a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.site-footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer-contact li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.site-footer-contact a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.site-footer-contact a:hover {
  color: var(--color-primary-light);
}

/* Footer Bottom Bar */
.site-footer-bar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
}

.site-footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer-credit {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.02em;
}

.site-footer-credit a {
  color: rgba(255, 255, 255, 0.80);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-fast);
}

.site-footer-credit a:hover {
  color: #ffffff;
}


/* ── RESPONSIVE MEDIA QUERIES ── */
@media (max-width: 1200px) {
  nav {
    padding: 18px 40px;
  }

  nav.nav-scrolled {
    padding: 14px 40px;
  }

  .nav-links {
    gap: 24px;
  }

  .hero-text {
    left: 40px;
    bottom: 56px;
  }

  .philosophie,
  .standort {
    gap: 64px;
    padding: 80px 40px;
  }

  .philosophie-image img {
    height: 460px;
  }

  .standort-photo--main img {
    height: 460px;
  }

  .standort-photo--sub img {
    height: 130px;
  }

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

  .philosophie-facts .philosophie-fact:last-child {
    grid-column: 1 / -1;
  }

  .angebot,
  .team,
  .kontakt {
    padding-left: 40px;
    padding-right: 40px;
  }

  .team-list {
    gap: 20px;
  }

  .site-footer {
    padding-left: 40px;
    padding-right: 40px;
  }

  .site-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }

  .site-footer-main > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 76px;
  }

  nav {
    padding: 16px 24px;
    gap: 12px;
  }

  nav.nav-scrolled {
    padding: 12px 24px;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-backdrop {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 105;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 88px 32px 48px;
    background: var(--bg-base);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-16px);
    transition: var(--transition-smooth);
    overflow-y: auto;
  }

  body.nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.nav-open .nav-toggle {
    position: relative;
    z-index: 110;
  }

  body.nav-open .nav-toggle-bar {
    background: var(--color-text-main);
  }

  .nav-links li {
    width: 100%;
    max-width: 320px;
    border-bottom: 1px solid rgba(61, 56, 50, 0.08);
    text-align: center;
  }

  .nav-links a:not(.nav-cta) {
    display: block;
    width: 100%;
    padding: 20px 0;
    font-size: 1rem;
    color: var(--color-text-main);
  }

  nav.nav-scrolled .nav-links a:not(.nav-cta) {
    color: var(--color-text-main);
  }

  .nav-links a:not(.nav-cta)::after {
    display: none;
  }

  .nav-links a:not(.nav-cta):hover {
    color: var(--color-primary);
  }

  .nav-menu-cta {
    border-bottom: none !important;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px dashed rgba(61, 56, 50, 0.15);
  }

  .nav-menu-cta .nav-cta {
    display: block;
    width: 100%;
    padding: 16px 32px;
    font-size: 0.82rem;
    text-align: center;
    background: var(--color-primary);
    color: #ffffff;
    border-radius: 100px;
  }

  .nav-menu-cta .nav-cta:hover {
    background: var(--color-primary-hover);
  }

  .hero {
    min-height: 520px;
    height: 100svh;
  }

  .hero-scroll {
    display: none;
  }

  .hero-text {
    bottom: 40px;
    left: 24px;
    right: 24px;
    max-width: none;
  }

  .hero-heading {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .belief {
    padding: 72px 24px;
  }

  .belief-text {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  .philosophie,
  .standort {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 48px 24px 56px;
  }

  .philosophie-image img {
    height: min(52vw, 320px);
  }

  .standort-photo--main img {
    height: min(52vw, 320px);
  }

  .standort-photo-row {
    gap: 10px;
  }

  .standort-photo--sub img {
    height: 110px;
  }

  .philosophie-content {
    padding: 0;
  }

  .philosophie-intro {
    margin-bottom: 28px;
  }

  .philosophie-facts {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .philosophie-facts .philosophie-fact:last-child {
    grid-column: auto;
  }

  .standort-content {
    padding: 0;
    order: 2;
  }

  .standort-image {
    order: 1;
  }

  .angebot {
    padding: 64px 24px 80px;
  }

  .angebot-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .angebot-beschreibung {
    padding: 24px 22px;
  }

  .team {
    padding: 64px 24px 80px;
  }

  .team-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .team-photo {
    max-width: 180px;
    margin: 0 auto;
  }

  .team-verein {
    margin-top: 48px;
    padding: 28px 24px;
  }

  .team-jobs {
    margin-top: 32px;
    padding: 32px 24px;
  }

  .kontakt {
    padding: 64px 24px;
  }

  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .kontakt-map-wrap {
    min-height: 0;
  }

  .kontakt-map-wrap iframe {
    height: min(56vw, 320px);
  }

  .site-footer {
    padding: 48px 24px 0;
  }

  .site-footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .site-footer-logo {
    justify-content: center;
  }

  .site-footer-tagline {
    max-width: none;
    margin: 0 auto;
  }

  .site-footer-nav,
  .site-footer-contact {
    align-items: center;
  }

  .site-footer-bar {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  nav {
    padding: 14px 16px;
  }

  nav.nav-scrolled {
    padding: 10px 16px;
  }

  .logo {
    gap: 10px;
    min-width: 0;
    flex: 1;
  }

  .logo-img {
    width: 40px;
    height: 40px;
  }

  .logo-text {
    font-size: 1.05rem;
  }

  .hero {
    min-height: 480px;
  }

  .hero-text {
    bottom: 32px;
    left: 16px;
    right: 16px;
  }

  .hero-heading {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }

  .belief {
    padding: 56px 16px;
  }

  .philosophie,
  .standort {
    padding: 40px 16px 48px;
    gap: 28px;
  }

  .philosophie-image img {
    height: 240px;
    border-radius: 12px;
  }

  .standort-photo--main img {
    height: 220px;
    border-radius: 12px;
  }

  .standort-photo--main {
    border-radius: 12px;
  }

  .standort-photo-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .standort-photo--sub img {
    height: 80px;
    border-radius: 8px;
  }

  .philosophie-intro {
    padding-left: 16px;
  }

  .philosophie-cta {
    width: 100%;
    text-align: center;
  }

  .angebot {
    padding: 48px 16px 64px;
  }

  .angebot-stats {
    grid-template-columns: 1fr 1fr;
  }

  .angebot-beschreibung {
    padding: 20px 18px;
  }



  .angebot-table thead th {
    font-size: 0.62rem;
    padding-bottom: 10px;
  }

  .angebot-table td {
    padding: 16px 8px 16px 0;
  }

  .angebot-table .at-price {
    font-size: 1rem;
    padding-left: 8px;
  }

  .team {
    padding: 48px 16px 64px;
  }

  .team-card {
    padding: 20px 16px;
  }

  .team-verein {
    padding: 24px 16px;
  }

  .kontakt {
    padding: 48px 16px 48px;
  }

  .kontakt-map-wrap iframe {
    height: 260px;
  }

  .site-footer {
    padding: 40px 16px 0;
  }

  .site-footer-logo img {
    width: 44px;
    height: 44px;
  }

  .site-footer-logo span {
    font-size: 1.15rem;
  }
}

@media (max-width: 380px) {
  .logo-text {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}