/* ============================================================
   MARINTEX GmbH – Maritime Interior Experts
   Main Stylesheet
   Colors: #CCAF8E (Taupe/Sand), #201414 (Dark Brown/Black)
   Font:   LemonMilk (headings), system sans-serif (body)
   ============================================================ */

/* --- Font Face --- */
@font-face {
  font-family: 'LemonMilk';
  src: url('../LOGO_MARINTEX/MARINTEX_LOGO/SCHRIFT_LEMONMILK_BOLD/LemonMilk.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'LemonMilk';
  src: url('../LOGO_MARINTEX/MARINTEX_LOGO/SCHRIFT_LEMONMILK_BOLD/LemonMilkbold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'LemonMilk';
  src: url('../LOGO_MARINTEX/MARINTEX_LOGO/SCHRIFT_LEMONMILK_BOLD/LemonMilklight.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

/* --- CSS Variables --- */
:root {
  --color-sand:       #CCAF8E;
  --color-sand-light: #e8d9c7;
  --color-sand-dark:  #b5956e;
  --color-dark:       #201414;
  --color-dark-mid:   #3a2a2a;
  --color-dark-soft:  #5a4a4a;
  --color-cream:      #f8f4ef;
  --color-white:      #ffffff;
  --color-gray-light: #f2ede8;
  --color-gray:       #a09090;

  --font-heading: 'LemonMilk', 'Gill Sans', 'Trebuchet MS', sans-serif;
  --font-body:    'Helvetica Neue', Arial, sans-serif;

  --radius:     4px;
  --radius-lg:  8px;
  --transition: 0.3s ease;
  --shadow:     0 4px 24px rgba(32,20,20,0.10);
  --shadow-lg:  0 8px 48px rgba(32,20,20,0.18);

  --nav-height: 80px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p  { margin-bottom: 1rem; color: var(--color-dark-mid); }

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-dark-soft);
}

/* --- Layout Utilities --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section--cream {
  background: var(--color-cream);
}

.section--dark {
  background: var(--color-dark);
  color: var(--color-white);
}
.section--dark p { color: var(--color-sand-light); }
.section--dark h2, .section--dark h3 { color: var(--color-white); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .overline {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-sand-dark);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--color-sand);
  margin: 1rem auto 0;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-sand);
  color: var(--color-dark);
  border-color: var(--color-sand);
}
.btn-primary:hover {
  background: var(--color-sand-dark);
  border-color: var(--color-sand-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204,175,142,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark);
}
.btn-outline-dark:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(32,20,20,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
}

.navbar--solid {
  background: var(--color-dark) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  /* Logo bekommt leichten weißen Hintergrund damit das farbige Logo auf dunkler Nav sichtbar bleibt */
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-lg);
  padding: 4px 10px;
  transition: background var(--transition);
}
.navbar.scrolled .nav-logo,
.navbar--solid .nav-logo {
  background: rgba(255,255,255,0.95);
}

.nav-logo img {
  height: 72px;
  width: auto;
  /* Farbiges Logo – kein Filter, da das PNG bereits in den Firmenfarben ist */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--color-sand);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-sand);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 1rem;
}

.lang-btn {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}

.lang-btn.active,
.lang-btn:hover {
  background: var(--color-sand);
  color: var(--color-dark);
  border-color: var(--color-sand);
}

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

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(32,20,20,0.98);
  padding: 2rem;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 999;
  border-top: 1px solid rgba(204,175,142,0.2);
}

.nav-drawer.open { display: flex; }

.nav-drawer a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-drawer a:hover { color: var(--color-sand); }

.nav-drawer .lang-toggle {
  margin-left: 0;
  margin-top: 0.5rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(32,20,20,0.75) 0%,
    rgba(32,20,20,0.45) 50%,
    rgba(32,20,20,0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 720px;
}

.hero-overline {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-sand);
  margin-bottom: 1.2rem;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 span { color: var(--color-sand); }

.hero .lead {
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(204,175,142,0.8));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ============================================================
   STATS / KEY FACTS BAR
   ============================================================ */
.stats-bar {
  background: var(--color-dark);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-sand);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-heading);
}

/* ============================================================
   INTRO / ABOUT PREVIEW
   ============================================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-image {
  position: relative;
}

.intro-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.intro-image::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  right: 20px; bottom: 20px;
  border: 2px solid var(--color-sand);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.intro-text .overline {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-sand-dark);
  margin-bottom: 0.75rem;
}

.intro-text h2 { margin-bottom: 1.5rem; }

.intro-text p { margin-bottom: 1.2rem; }

.intro-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.8rem 0 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.92rem;
}

.highlight-item::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--color-sand);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES PREVIEW (Homepage)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(204,175,142,0.15);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-card-body {
  padding: 1.8rem;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--color-sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--color-dark);
}

.service-card h3 { margin-bottom: 0.8rem; }

.service-card p { font-size: 0.92rem; margin-bottom: 1.2rem; }

.service-link {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-sand-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: 0.8rem; }
.service-link::after { content: '→'; }

/* ============================================================
   EXPERTISE / ABOUT PAGE
   ============================================================ */
.expertise-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.expertise-item {
  padding: 2rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-sand);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.expertise-item:hover { transform: translateX(4px); }

.expertise-item h4 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.expertise-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-sand);
  line-height: 1;
  display: block;
  margin-bottom: 0.3rem;
}

/* ============================================================
   TEAM / PERSON SECTION
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}

.team-photo-wrap {
  position: sticky;
  top: 120px;
}

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin: 1.2rem 0 0.2rem;
}

.team-title {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-sand-dark);
  font-family: var(--font-heading);
}

.team-bio h3 { margin: 2rem 0 1rem; }
.team-bio p  { margin-bottom: 1.2rem; }

.cert-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cert-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  background: var(--color-cream);
  border-radius: var(--radius);
  font-size: 0.9rem;
}

.cert-item::before {
  content: '✓';
  color: var(--color-sand-dark);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ============================================================
   SERVICES PAGE – FULL
   ============================================================ */
.service-section {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(204,175,142,0.2);
}
.service-section:last-child { border-bottom: none; }

.service-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-section-grid.reverse { direction: rtl; }
.service-section-grid.reverse > * { direction: ltr; }

.service-full-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.service-content h2 { margin-bottom: 1.2rem; }
.service-content p  { margin-bottom: 1rem; }

.service-list {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.92rem;
  padding: 0.4rem 0;
}

.service-list li::before {
  content: '—';
  color: var(--color-sand-dark);
  font-weight: 700;
  flex-shrink: 0;
}

/* Training Topics */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.topic-item {
  background: var(--color-cream);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  border-left: 2px solid var(--color-sand);
}

/* IMO diagram – vollständiges Bild anzeigen, nicht abschneiden */
.imo-diagram {
  text-align: center;
  margin: 2rem 0;
}
.imo-diagram img {
  max-width: 100%;
  width: 100%;
  height: auto;          /* Verhältnis beibehalten – kein Abschneiden */
  object-fit: contain;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  display: block;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1.5rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--color-sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-dark);
}

.contact-detail-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 0.2rem;
}

.contact-detail-text span,
.contact-detail-text a {
  font-size: 0.95rem;
  color: var(--color-dark-mid);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(204,175,142,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--color-dark-mid);
}

.social-link:hover {
  background: var(--color-sand);
  border-color: var(--color-sand);
  color: var(--color-dark);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Contact Form */
.contact-form {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

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

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(204,175,142,0.4);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-dark);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-sand-dark);
  box-shadow: 0 0 0 3px rgba(204,175,142,0.2);
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.8rem;
  color: var(--color-gray);
  margin-top: 1rem;
}

.form-success {
  display: none;
  background: rgba(204,175,142,0.2);
  border: 1px solid var(--color-sand);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-top: 1rem;
  color: var(--color-dark);
  font-size: 0.92rem;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding-top: var(--nav-height);
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0 3rem;
  color: var(--color-white);
}

.page-hero-content .overline {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-sand);
  margin-bottom: 0.75rem;
}

.page-hero-content h1 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.page-hero-content p {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.4); }
.breadcrumb a:hover { color: var(--color-sand); }
.breadcrumb span { color: var(--color-sand); }

/* ============================================================
   IMPRINT / DATENSCHUTZ
   ============================================================ */
.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
  color: var(--color-dark);
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 1.8rem 0 0.8rem;
  color: var(--color-dark-mid);
}

.legal-content p,
.legal-content li {
  font-size: 0.92rem;
  color: var(--color-dark-soft);
  margin-bottom: 0.8rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 3rem;
  border-bottom: 2px solid rgba(204,175,142,0.3);
}

.legal-tab {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--color-gray);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
}

.legal-tab.active,
.legal-tab:hover {
  color: var(--color-dark);
  border-bottom-color: var(--color-sand-dark);
}

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

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--color-sand);
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--color-dark-mid);
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 80px;
  /* Farbiges Logo – kein Filter */
  background: rgba(255,255,255,0.92);
  border-radius: var(--radius);
  padding: 6px 12px;
  margin-bottom: 1.2rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-sand);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--color-sand); }

.footer-col address {
  font-style: normal;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
}

.footer-col address a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col address a:hover { color: var(--color-sand); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

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

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--color-sand); }

/* Footer social icons */
.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--color-sand);
  border-color: var(--color-sand);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,0.6);
  transition: fill var(--transition);
}
.footer-social a:hover svg { fill: var(--color-dark); }

/* ============================================================
   GALLERY HEADING – EINBLICKE groß und weiß
   ============================================================ */
.gallery-main-heading {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1;
}

/* ============================================================
   GALLERY STRIP
   ============================================================ */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}

.gallery-strip-item {
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-strip-item:hover img { transform: scale(1.08); }

/* ============================================================
   ANIMATIONS & HELPERS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* Page top offset for anchors */
.anchor-offset {
  scroll-margin-top: calc(var(--nav-height) + 1rem);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 280px 1fr; gap: 2.5rem; }
  .intro-grid { gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }

  .nav-links, .lang-toggle { display: none; }
  .nav-toggle { display: flex; }

  .section { padding: 3.5rem 0; }

  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; }

  .intro-grid { grid-template-columns: 1fr; }
  .intro-image { order: -1; }
  .intro-image img { height: 320px; }
  .intro-image::before { display: none; }

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

  .service-section-grid,
  .service-section-grid.reverse { grid-template-columns: 1fr; direction: ltr; }
  .service-section-grid.reverse > * { direction: ltr; }

  .team-grid { grid-template-columns: 1fr; }
  .team-photo-wrap { position: static; }
  .team-photo { height: 380px; width: 100%; aspect-ratio: auto; }

  .contact-layout { grid-template-columns: 1fr; }

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

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

  .gallery-strip { grid-template-columns: repeat(3, 1fr); }

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

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
}
