/* ═══════════════════════════════════════════════
   STANDORT-LANDINGPAGES – Shared styles
   Extends: /style.css
═══════════════════════════════════════════════ */

.standort-page { padding-top: 70px; }
.standort-page main > section { padding: 80px; }
.standort-page .standort-hero { padding: 60px 80px 80px; }

.standort-breadcrumb {
  padding: 1rem 80px;
  font-size: 0.8rem;
  color: var(--text-light);
  max-width: 1100px;
  margin: 0 auto;
}
.standort-breadcrumb a {
  color: var(--moss);
  text-decoration: none;
}
.standort-breadcrumb a:hover {
  color: var(--amber);
  text-decoration: underline;
}
.standort-breadcrumb span { margin: 0 0.4em; }

/* Hero */
.standort-hero {
  position: relative;
  background: var(--forest);
  padding: 80px;
  overflow: hidden;
}
.standort-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(74,124,89,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(212,160,68,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.standort-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.5;
}
.standort-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.standort-hero__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(212,160,68,0.12);
  border: 1px solid rgba(212,160,68,0.3);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 24px;
}
.standort-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.standort-hero h1 .highlight { color: var(--amber); }
.standort-hero__sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin: 0 auto 32px;
  font-weight: 300;
}
.standort-hero__sub strong { color: var(--white); font-weight: 600; }
.standort-hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Problem */
.standort-problem { background: var(--cream); }
.standort-problem__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 720px;
  font-weight: 300;
}

/* Solution */
.standort-solution { background: var(--white); }
.standort-garantie-box {
  max-width: 720px;
  margin-top: 32px;
  background: linear-gradient(135deg, rgba(212,160,68,0.12), rgba(74,124,89,0.08));
  border: 2px solid var(--amber);
  border-radius: 16px;
  padding: 32px 36px;
}
.standort-garantie-box p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin: 0;
}
.standort-garantie-box strong { color: var(--forest); }

/* Tech */
.standort-tech { background: var(--cream); }
.standort-tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.standort-tech-item {
  background: var(--white);
  border-radius: 14px;
  padding: 28px;
  border-left: 4px solid var(--forest);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.standort-tech-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 10px;
}
.standort-tech-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

/* Final CTA */
.standort-final-cta {
  background: var(--forest);
  text-align: center;
}
.standort-final-cta .section-label { color: var(--amber); }
.standort-final-cta h2 { color: var(--white); }
.standort-final-cta p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 32px;
}

.standort-kontakt { background: var(--white); }
.standort-kontakt .kontakt-grid { margin-top: 0; }

.standort-nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.standort-nav-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.standort-nav-links a:hover { color: var(--forest); }

.standort-standorte-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}
.standort-standorte-links a {
  font-size: 0.82rem;
  color: var(--moss);
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid var(--sand);
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s;
}
.standort-standorte-links a:hover {
  border-color: var(--moss);
  color: var(--forest);
}
.standort-standorte-links a.is-active {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

@media (max-width: 900px) {
  .standort-page main > section { padding: 48px 24px; }
  .standort-page .standort-hero { padding: 40px 24px 48px; }
  .standort-hero { padding: 48px 24px; }
  .standort-breadcrumb { padding: 0.75rem 24px; }
  .standort-tech-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .standort-hero { padding: 40px 20px; }
  .standort-breadcrumb { padding: 0.5rem 20px; font-size: 0.75rem; }
  .standort-nav-links { display: none; }
}
