/* ─── LOCAL FONTS ─── */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/manrope-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/manrope-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/manrope-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/manrope-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/manrope-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/source-serif-4-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/source-serif-4-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/source-serif-4-400-italic.woff2') format('woff2');
}

/* ─── CONSENT BANNER ─── */
.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--petrol);
  color: var(--white);
  padding: 24px clamp(24px, 5vw, 64px);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 -4px 32px rgba(31,58,58,0.2);
}

.consent-banner.visible {
  transform: translateY(0);
}

.consent-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.consent-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.consent-text {
  flex: 1;
  min-width: 280px;
}

.consent-text p {
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
}

.consent-text a {
  color: var(--sage-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.consent-btn {
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}

.consent-btn-accept {
  background: var(--sage);
  color: var(--petrol);
}

.consent-btn-accept:hover {
  background: var(--sage-light);
  transform: translateY(-1px);
}

.consent-btn-decline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}

.consent-btn-decline:hover {
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-1px);
}

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

:root {
  --petrol: #1F3A3A;
  --petrol-light: #2A4F4F;
  --sage: #A8C3B0;
  --sage-light: #C5D9CB;
  --ice: #EAF3F8;
  --ice-half: #F4F9FC;
  --text: #2B2B2B;
  --text-light: #5A5A5A;
  --white: #FFFFFF;
  --border: #E2E8E4;
  --font-head: 'Manrope', sans-serif;
  --font-body: 'Source Serif 4', Georgia, serif;
  --max-w: 1140px;
  --section-gap: clamp(80px, 12vw, 160px);
}

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

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

::selection {
  background: var(--sage);
  color: var(--petrol);
}

/* ─── UTILITY ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 24px rgba(31,58,58,0.04);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--petrol);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.nav-logo span {
  color: var(--sage);
  margin-left: 2px;
}

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

.nav-links a {
  font-family: var(--font-head);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-links a:hover {
  color: var(--petrol);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white) !important;
  background: var(--petrol);
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--petrol-light);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Mobile menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--petrol);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a { font-size: 1.1rem; }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
}

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

.btn-primary:hover {
  background: var(--petrol-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31,58,58,0.15);
}

.btn-secondary {
  background: transparent;
  color: var(--petrol);
  border: 1.5px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--petrol);
  background: var(--ice-half);
  transform: translateY(-2px);
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--ice) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.hero-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sage);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-label::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--sage);
}

.hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.15;
  color: var(--petrol);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.12rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
  text-align: center;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  animation: scrollHint 2.5s ease-in-out infinite;
}

.hero-scroll-hint span {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--petrol);
}

.hero-scroll-hint svg {
  width: 20px;
  height: 20px;
  color: var(--petrol);
}

@keyframes scrollHint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── SECTION STYLES ─── */
section {
  padding: var(--section-gap) 0;
}

.section-ice {
  background: var(--ice-half);
}

.section-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sage);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--sage);
}

h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--petrol);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: center;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.8;
  margin: 0 auto 48px;
  text-align: center;
}

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

.about-portrait {
  aspect-ratio: 4/5;
  background: var(--ice);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.about-portrait-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--sage);
}

.about-portrait-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.5;
}

.about-portrait-placeholder span {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.6;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 20px;
  max-width: 520px;
}

.about-text .section-label {
  justify-content: flex-start;
}

.about-text h2 {
  text-align: left;
}

.about-text p.highlight {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--petrol);
  line-height: 1.6;
}

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

.about-separator {
  width: 40px;
  height: 2px;
  background: var(--sage);
  margin: 28px 0;
}

@media (max-width: 800px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-portrait {
    max-width: 400px;
    aspect-ratio: 1/1;
  }
}

/* ─── SERVICE CARDS ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 36px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  color: var(--text);
}

.section-ice .service-card {
  border-color: transparent;
  box-shadow: 0 1px 12px rgba(31,58,58,0.04);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(31,58,58,0.08);
  border-color: var(--sage-light);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--ice);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--petrol);
  transition: background 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--sage-light);
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--petrol);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  text-align: center;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 16px;
  text-align: left;
}

.service-items {
  list-style: none;
  margin-bottom: 20px;
}

.service-items li {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.service-items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.service-goal {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--petrol);
  letter-spacing: 0.02em;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.service-goal::before {
  content: '→';
  color: var(--sage);
}

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

/* ─── DETAIL SECTIONS ─── */
.detail-section {
  padding: var(--section-gap) 0;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.detail-layout.reverse {
  direction: rtl;
}

.detail-layout.reverse > * {
  direction: ltr;
}

.detail-visual {
  aspect-ratio: 4/3;
  background: var(--ice);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.detail-visual-icon {
  color: var(--sage);
  opacity: 0.3;
}

.detail-visual-icon svg {
  width: 80px;
  height: 80px;
}

.detail-content h2 {
  margin-bottom: 16px;
}

.detail-content p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 24px;
  max-width: 500px;
}

.detail-list {
  list-style: none;
  margin-bottom: 32px;
}

.detail-list li {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.detail-list li:last-child {
  border-bottom: none;
}

.detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 12px;
  height: 2px;
  background: var(--sage);
}

.detail-goal {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--petrol);
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-goal::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--petrol);
}

@media (max-width: 800px) {
  .detail-layout,
  .detail-layout.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }
}

/* ─── LEISTUNGEN DETAIL BLOCKS (consolidated page) ─── */
.leistung-block {
  padding: clamp(60px, 8vw, 100px) 0;
}

.leistung-block:nth-child(even) {
  background: var(--ice-half);
}

.leistung-block .detail-layout {
  gap: 60px;
}

.leistung-block .service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  margin: 0 auto 20px;
}

.leistung-block .service-icon svg {
  width: 24px;
  height: 24px;
}

/* ─── WORKSHOPS SECTION ─── */
.workshops-intro {
  max-width: 640px;
  margin-bottom: 64px;
}

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

.workshop-block {
  position: relative;
}

.workshop-block h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--petrol);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  text-align: left;
}

.workshop-block > p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 480px;
  text-align: left;
}

.workshop-topics {
  list-style: none;
  margin-bottom: 28px;
}

.workshop-topics li {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding: 9px 0;
  padding-left: 24px;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.workshop-topics li:last-child {
  border-bottom: none;
}

.workshop-topics li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 10px;
  height: 2px;
  background: var(--sage);
}

.workshop-formats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  justify-content: flex-start;
}

.format-tag {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--petrol);
  background: var(--ice);
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.01em;
}

.workshop-separator {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 48px 0;
  display: none;
}

.workshop-highlight {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--petrol);
  padding: 20px 24px;
  background: var(--ice);
  border-radius: 10px;
  border-left: 3px solid var(--sage);
  line-height: 1.6;
  margin-bottom: 32px;
  text-align: left;
}

@media (max-width: 800px) {
  .workshops-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .workshop-separator {
    display: block;
  }
}

/* ─── QUOTE / DIVIDER ─── */
.quote-section {
  padding: 80px 0;
  background: var(--petrol);
  color: var(--white);
  text-align: center;
}

.quote-section blockquote {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
  opacity: 0.9;
}

.quote-section .quote-dash {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--sage);
  margin: 24px auto 16px;
}

.quote-section cite {
  font-family: var(--font-head);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ─── CONTACT ─── */
.contact-section {
  padding: var(--section-gap) 0;
  background: var(--ice-half);
}

.contact-section .section-label {
  justify-content: flex-start;
}

.contact-section h2 {
  text-align: left;
}

.contact-section .section-intro {
  text-align: left;
  margin-left: 0;
}

.workshop-block .btn {
  display: inline-flex;
}

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

.contact-reasons {
  list-style: none;
  margin: 32px 0 40px;
}

.contact-reasons li {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--petrol);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-reasons li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 4px 32px rgba(31,58,58,0.06);
  border: 1px solid var(--border);
}

.contact-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--petrol);
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 28px;
}

.contact-card .btn {
  width: 100%;
  justify-content: center;
}

.contact-info {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
}

.contact-info-item svg {
  width: 18px;
  height: 18px;
  color: var(--sage);
  flex-shrink: 0;
}

.contact-info-item a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-item a:hover {
  color: var(--petrol);
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ─── FOOTER ─── */
footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* ─── SMOOTH SECTION DIVIDERS ─── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--petrol);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(31,58,58,0.2);
  z-index: 90;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(31,58,58,0.3);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

/* ─── LEGAL PAGES (Impressum, Datenschutz) ─── */
.legal-section {
  padding-top: calc(72px + clamp(60px, 8vw, 100px));
  padding-bottom: var(--section-gap);
}

.legal-header {
  margin-bottom: 48px;
}

.legal-header h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--petrol);
  letter-spacing: -0.025em;
  line-height: 1.2;
  text-align: left;
}

.legal-header .section-label {
  justify-content: flex-start;
}

.legal-content {
  max-width: 100%;
}

.legal-content h2 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: left;
}

.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--petrol);
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-content p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 16px;
  max-width: 100%;
}

.legal-content strong {
  color: var(--text);
  font-weight: 600;
}

.legal-content em {
  color: var(--sage);
  font-style: italic;
}

.legal-content a {
  color: var(--petrol);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.legal-content a:hover {
  color: var(--petrol-light);
}

.legal-note {
  margin-top: 48px;
  padding: 24px 28px;
  background: var(--ice);
  border-radius: 10px;
  border-left: 3px solid var(--sage);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.7;
}

.legal-note a {
  color: var(--petrol);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Hero headline no-wrap fix */
.hero h1 span {
  white-space: nowrap;
}
@media (max-width: 500px) {
  .hero h1 span {
    white-space: normal;
  }
}
