/* ============================================================
   Luwa Wasserschaden AG · marketing one-pager
   Visual language adapted from pureswissvodka.com
   ============================================================ */

:root {
  --navy:        #14495B;
  --navy-mid:    #1b5a72;
  --navy-deep:   #0c3445;
  --primary:     #007DA5;
  --accent:      #63CFE3;
  --muted:       #3F738D;
  --grey:        #A2A9AD;
  --white:       #ffffff;
  --off-white:   #f7f6f3;
  --border:      #e2ddd5;
  --border-soft: #ecebe6;
  --text:        #1f2a31;
  --text-mid:    #4a5b65;
  --wa:          #25d366;

  --font-sans: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;

  --container: 1280px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: env(safe-area-inset-bottom);
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
a:hover { color: var(--primary); }

h1, h2, h3 { margin: 0; color: var(--navy); letter-spacing: -0.01em; font-weight: 600; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.2rem;
}
.eyebrow--light { color: var(--accent); }

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 1.4rem;
}
.section-title--light { color: var(--white); }

.section-rule {
  width: 48px;
  height: 2px;
  background: var(--primary);
  margin: 0 auto;
}
.section-rule--light { background: var(--accent); }

.services-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

/* ===== NAV ============================================== */

#mainnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}
#mainnav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--border);
  height: 110px;
}
#mainnav.scrolled .nav-brand-logo {
  height: 130px;
}

.nav-hamburger {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}
#mainnav.scrolled .nav-hamburger span { background: var(--navy); }

.nav-brand {
  display: flex;
  align-items: center;
  line-height: 1;
  transition: filter 0.3s ease;
}
.nav-brand-logo {
  height: clamp(140px, 17vw, 200px);
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.25));
  transition: filter 0.3s ease, height 0.3s ease;
}
#mainnav.scrolled .nav-brand-logo {
  filter: none;
  /* invert white logo to navy on light scrolled bg */
  filter: brightness(0) saturate(100%) invert(20%) sepia(28%) saturate(900%) hue-rotate(165deg) brightness(95%) contrast(90%);
}

/* MENU OVERLAY */

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.menu-overlay[hidden] { display: none; }
.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.menu-close {
  position: absolute;
  top: 28px;
  right: 36px;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 2rem;
  font-weight: 200;
  cursor: pointer;
  line-height: 1;
  padding: 6px 10px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.menu-close:hover { opacity: 1; }

.menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.menu-link {
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease;
}
.menu-link:hover { color: var(--white); }

.menu-phone {
  margin-top: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(99, 207, 227, 0.4);
  padding: 14px 28px;
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease;
}
.menu-phone:hover { background: var(--accent); color: var(--navy); }

/* ===== HERO ============================================= */

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  z-index: 20;
}

.hero-img {
  position: absolute;
  inset: 0;
  background: url('../img/bg-hero.jpg') center 45% / cover no-repeat;
  animation: heroZoom 12s ease-out both;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 73, 91, 0.55) 0%, rgba(12, 52, 69, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 220px 32px 80px;
  animation: heroFadeIn 1s ease 0.15s both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}


.hero-tagline {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 0 0 2.6rem;
  max-width: 1100px;
}

.hero-phone {
  display: inline-block;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white);
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.hero-phone:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ===== ORIGIN ============================================ */

.origin {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  overflow: hidden;
}
.origin-bg {
  position: absolute;
  inset: 0;
  background: url('../img/bg-origin.jpg') center center / cover no-repeat;
  z-index: 0;
}
.origin-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.80) 50%,
    rgba(255, 255, 255, 0.80) 100%
  );
}
.origin-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.origin-desc {
  font-size: clamp(1.15rem, 1.95vw, 1.55rem);
  font-weight: 300;
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
  letter-spacing: 0.005em;
  max-width: 850px;
  margin: 0 auto 5.5rem;
}

.origin-headline {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}
.origin-headline em {
  font-style: normal;
  color: var(--primary);
  font-weight: 300;
}

.origin-sub {
  font-size: clamp(0.7rem, 1.1vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1.2rem;
}

/* ===== SOFORTHILFE ======================================= */

.sofort {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--off-white);
}
.sofort-inner {
  max-width: 1180px;
}
.sofort-head {
  text-align: center;
  margin-bottom: 3rem;
}
.sofort-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.sofort-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.sofort-steps li {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.6rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
}
.sofort-num {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--primary);
}
.sofort-steps strong {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.sofort-text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-mid);
}
.sofort-call {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.7rem 1rem;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  border-radius: 2px;
  transition: background 0.2s ease;
  min-height: 44px;
  line-height: 1.7;
}
.sofort-call:hover { background: var(--navy); color: var(--white); }

/* ===== SERVICES ========================================== */

.services {
  padding: clamp(40px, 5vw, 70px) 0 clamp(80px, 10vw, 130px);
  background: var(--white);
}

.services-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  background: var(--off-white);
  max-width: 1080px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--off-white);
}
.service-card + .service-card { border-left: 1px solid var(--border); }

.service-card-label {
  padding: 1.6rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

.service-card-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #d8dee2;
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.service-card:hover .service-card-image img { transform: scale(1.03); }

.service-card-body {
  padding: 2.6rem 2.4rem 3rem;
  text-align: center;
}

.service-card-name {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}

.service-card-intro {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 1.2rem;
  text-align: left;
}
.service-card-intro + .service-card-intro { margin-bottom: 1.8rem; }
.service-card-name { text-align: left; margin-left: auto; margin-right: auto; max-width: 520px; }

.sc-tags {
  list-style: none;
  margin: 0 auto;
  padding: 1.2rem 0 0;
  max-width: 520px;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--muted);
  text-align: left;
}
.sc-tags::before {
  content: 'Methoden';
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.sc-tag {
  display: inline;
}
.sc-tag:not(:last-child)::after {
  content: ' · ';
  color: var(--grey);
  margin: 0 0.25rem;
}

/* ===== PROCESS / VORGEHEN ================================ */

.process {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--off-white);
}
.process-lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--navy);
  max-width: 760px;
  margin: 1.8rem auto 0;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
}
.step {
  padding: 2.6rem 1.8rem 2.6rem 0;
  border-right: 1px solid var(--border);
}
.step:last-child {
  border-right: 0;
  padding-right: 0;
}
.step:not(:first-child) { padding-left: 1.8rem; }

.step-num {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--primary);
  margin-bottom: 1.4rem;
}
.step-name {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.7rem;
  letter-spacing: 0.005em;
}
.step-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===== TEAM ============================================== */

.team-section {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--white);
}

.team-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.team-card {
  display: flex;
  flex-direction: column;
  background: transparent;
}

.team-card-image {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #d8dee2;
}
.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.8s ease;
}
.team-card-image img.img-luca { object-position: center 72%; }
.team-card-image img.img-christof {
  object-position: 60% 70%;
  transform: scale(1.1);
  transform-origin: 60% 70%;
}
.team-card:hover .team-card-image img.img-christof { transform: scale(1.13); }
.team-card:hover .team-card-image img { transform: scale(1.03); }

.team-card-meta {
  padding: 1.8rem 0 0;
  text-align: left;
}
.team-role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 0.5rem;
}
.team-name {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin: 0 0 1.1rem;
}

.team-bio {
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
  color: var(--navy);
  margin: 0 0 1.6rem;
  max-width: 560px;
}
.team-funfact {
  margin: 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--navy);
  max-width: 560px;
}
.team-funfact span {
  display: inline-block;
  margin-right: 0.7rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--primary);
}

/* ===== KONTAKT =========================================== */

.contact {
  position: relative;
  padding: clamp(40px, 5vw, 70px) 0 clamp(80px, 10vw, 130px);
  overflow: hidden;
  background: var(--white);
}
.contact-bg {
  position: absolute;
  inset: 0;
  background: url('../img/bg-contact.jpg') center center / cover no-repeat;
  z-index: 0;
}
.contact-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.80) 50%,
    rgba(255, 255, 255, 0.80) 100%
  );
}
.contact-content {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.contact-lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  color: var(--muted);
  margin: 1.6rem auto 0;
  max-width: 600px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  max-width: 760px;
  margin: 3.5rem auto 0;
}
.contact-card {
  display: flex;
  flex-direction: column;
  padding: 2.6rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -18px rgba(20, 73, 91, 0.35);
}
.contact-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}
.contact-value {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.01em;
  word-break: break-word;
  margin-bottom: 0.5rem;
}
.contact-hint {
  font-size: 0.82rem;
  color: var(--muted);
}

.contact-whatsapp {
  margin: 1.6rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}
.contact-whatsapp a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--primary);
}
.contact-whatsapp a:hover { color: var(--navy); border-bottom-color: var(--navy); }

.contact-address {
  margin: 3.5rem 0 0.6rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--navy);
}
.contact-area {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ===== FOOTER ============================================ */

.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.55);
  padding: 1.4rem 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-brand img {
  width: 90px;
  margin: 0;
}
.footer-brand p {
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
}
.footer-meta {
  text-align: right;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.footer-meta p { margin: 0; }
.footer-meta a { color: rgba(255, 255, 255, 0.85); }
.footer-meta a:hover { color: var(--accent); }

.impressum {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.6rem;
}
.impressum summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.4rem 0;
}
.impressum summary::-webkit-details-marker { display: none; }
.impressum summary::after { content: ' +'; color: var(--accent); margin-left: 0.4rem; }
.impressum[open] summary::after { content: ' \2013'; }
.impressum-body { padding: 1rem 0 0.4rem; font-size: 0.88rem; line-height: 1.7; }
.impressum-body a { color: var(--accent); }

/* ===== MOBILE STICKY BAR ================================= */

.mobilebar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(12, 52, 69, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mobilebar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  border-radius: 2px;
  min-height: 48px;
}
.mobilebar-btn--call { background: var(--primary); }
.mobilebar-btn--wa { background: var(--wa); }

/* ===== REVEAL ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal.up { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.22s; }
.d3 { transition-delay: 0.38s; }
.d4 { transition-delay: 0.52s; }

/* ===== RESPONSIVE ======================================== */

@media (max-width: 980px) {
  .sofort-steps { grid-template-columns: 1fr 1fr; }

  .services-board { grid-template-columns: 1fr; }
  .service-card + .service-card { border-left: 0; border-top: 1px solid var(--border); }

  .team-board { grid-template-columns: 1fr; }

  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-right: 0 !important; border-bottom: 1px solid var(--border); padding: 2rem 0 !important; }
  .step:nth-child(odd) { border-right: 1px solid var(--border) !important; padding-right: 1.6rem !important; }
  .step:nth-child(even) { padding-left: 1.6rem !important; }
  .step:nth-last-child(-n+2) { border-bottom: 0; }

  .contact-grid { grid-template-columns: 1fr; max-width: 420px; }
  .footer-inner { flex-direction: column; }
  .footer-meta { text-align: left; }

  .mobilebar { display: flex; }
  body { padding-bottom: 80px; }
}

@media (max-width: 620px) {
  .container { padding: 0 22px; }

  .sofort-steps { grid-template-columns: 1fr; gap: 0.9rem; }
  .sofort-head { margin-bottom: 2rem; }

  /* Nav: shrink for mobile */
  #mainnav { height: 140px; }
  #mainnav.scrolled { height: 80px; }
  .nav-brand-logo { height: clamp(90px, 22vw, 130px); }
  #mainnav.scrolled .nav-brand-logo { height: 80px; }

  /* Hero: tighten padding to match shorter nav, keep tagline readable */
  .hero { min-height: 560px; }
  .hero-content { padding: 140px 22px 60px; }
  .hero-tagline { margin-bottom: 1.8rem; }
  .hero-phone { font-size: 1.25rem; padding: 0.7rem 0; }

  /* Section headers: smaller bottom gap */
  .services-header { margin-bottom: 2.4rem; }

  /* Origin */
  .origin { padding: 70px 0 80px; }
  .origin-content { padding: 0 22px; }
  .origin-desc { margin-bottom: 3rem; line-height: 1.6; }

  /* Steps stack as one column */
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0 !important; padding: 1.8rem 0 !important; }
  .step:nth-child(odd) { padding-right: 0 !important; border-right: 0 !important; }
  .step:nth-child(even) { padding-left: 0 !important; }
  .step:not(:last-child) { border-bottom: 1px solid var(--border); }

  /* Services cards */
  .service-card-body { padding: 1.8rem 1.4rem 2.2rem; }
  .service-card-name { font-size: 1.5rem; }
  .service-card-intro { font-size: 0.97rem; }

  /* Team */
  .team-section { padding: 70px 0 80px; }
  .team-board { gap: 3rem; }
  .team-card-image { aspect-ratio: 4 / 3; }
  .team-card-meta { padding: 1.4rem 0 0; }
  .team-name { font-size: 1.35rem; }
  .team-bio { font-size: 0.97rem; line-height: 1.7; }

  /* Contact */
  .contact-content { padding: 0 22px; }
  .contact-grid { margin-top: 2.4rem; gap: 0.8rem; }
  .contact-card { padding: 2rem 1.4rem; }
  .contact-value { font-size: 1.15rem; }
  .contact-address { margin-top: 2.4rem; }

  /* Nav hamburger / close placement */
  .nav-hamburger { left: 20px; padding: 12px; }
  .menu-close { top: 18px; right: 20px; font-size: 2.2rem; padding: 10px 14px; }
  .menu-links { gap: 1.1rem; }

  /* Mobilebar tap targets */
  .mobilebar-btn { padding: 12px; font-size: 0.92rem; min-height: 52px; }
}

@media (max-width: 380px) {
  .hero-tagline { font-size: 1.9rem; }
  .nav-brand-logo { height: 86px; }
  #mainnav { height: 120px; }
  .hero-content { padding-top: 120px; }
}

/* ---------- LEGAL PAGES (Impressum, Datenschutz) ---------- */
.legal-page {
  padding: clamp(140px, 18vw, 200px) 0 clamp(60px, 8vw, 100px);
  background: var(--off-white);
  min-height: 100vh;
}
.legal-inner {
  max-width: 760px;
}
.legal-back {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.95rem;
}
.legal-back:hover { text-decoration: underline; }
.legal-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 300;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0.4rem 0 1.4rem;
}
.legal-page h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin: 2.4rem 0 0.6rem;
}
.legal-page p,
.legal-page ul {
  font-size: 1rem;
  line-height: 1.7;
  color: #2c3e50;
  margin: 0 0 1rem;
}
.legal-page ul {
  padding-left: 1.4rem;
}
.legal-page li {
  margin-bottom: 0.3rem;
}
.legal-page a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-page a:hover { color: var(--navy); }
.legal-meta {
  margin-top: 3rem;
  font-size: 0.85rem;
  color: var(--grey);
}
