/* ==========================================================================
   SUGG Spedition & Handel — Website Styles
   ========================================================================== */

/* ---------- Fonts (self-hosted, DSGVO-konform) ---------- */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-var.woff2') format('woff2-variations');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-var-italic.woff2') format('woff2-variations');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-var.woff2') format('woff2-variations');
}

/* ---------- Design Tokens ---------- */
:root {
  /* Farben */
  --c-bg:        #FAF7F2;   /* warmes Off-White */
  --c-bg-alt:    #F1EDE5;   /* leicht dunklere Sektion */
  --c-ink:       #1A1A1A;   /* Text primär */
  --c-ink-2:     #4A4A4A;   /* Text sekundär */
  --c-ink-mute:  #767676;   /* mute */
  --c-line:      #E4DFD6;   /* dünne Trenner */
  --c-line-dark: #C4BEB2;

  --c-brand:      #B30303;  /* SUGG-Rot */
  --c-brand-dark: #68120C;  /* Hover/dunkle Blöcke */
  --c-brand-ink:  #7A0B0B;  /* dunkler Text-Rot */

  --c-dark:       #1F1D1B;  /* fast-schwarz für dunkle Sektionen */
  --c-dark-ink:   #EEE9DF;  /* Text auf dunkel */

  /* Typo */
  --f-display: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --f-sans:    'Inter', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;

  /* Spacing */
  --s-1: 0.25rem; --s-2: 0.5rem; --s-3: 0.75rem; --s-4: 1rem;
  --s-5: 1.5rem; --s-6: 2rem;    --s-7: 3rem;    --s-8: 4rem;
  --s-9: 6rem;   --s-10: 8rem;   --s-11: 12rem;

  /* Radii */
  --r-sm: 4px; --r-md: 8px; --r-lg: 16px; --r-xl: 24px;

  /* Layout */
  --container: 1200px;
  --header-h: 76px;

  /* Shadows */
  --sh-1: 0 1px 2px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.04);
  --sh-2: 0 4px 12px rgba(0,0,0,.08), 0 12px 32px rgba(0,0,0,.06);
  --sh-3: 0 8px 24px rgba(0,0,0,.12), 0 24px 64px rgba(0,0,0,.08);

  /* Motion */
  --e-out: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-bg);
  font-feature-settings: 'kern' 1, 'liga' 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--c-brand-ink); text-decoration: none; transition: color .2s var(--e-out); }
a:hover { color: var(--c-brand); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--c-brand);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--c-ink);
  margin: 0 0 var(--s-4);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 5.5vw, 4rem);  font-weight: 500; }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.15rem; font-family: var(--f-sans); font-weight: 600; letter-spacing: .01em; }

p { margin: 0 0 var(--s-4); color: var(--c-ink-2); }
p.lead { font-size: 1.15rem; color: var(--c-ink); max-width: 60ch; }
strong { color: var(--c-ink); font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-brand);
  margin-bottom: var(--s-4);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--c-brand);
  vertical-align: middle;
  margin-right: var(--s-3);
  transform: translateY(-2px);
}

/* ---------- Layout Primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) { .container { padding-inline: 2rem; } }

.section {
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--dark { background: var(--c-dark); color: var(--c-dark-ink); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--c-dark-ink); }
.section--dark p { color: rgba(238,233,223,.75); }
.section--alt { background: var(--c-bg-alt); }

.grid { display: grid; gap: var(--s-6); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 700px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.stack > * + * { margin-top: var(--s-4); }
.stack-lg > * + * { margin-top: var(--s-6); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,247,242,.92);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
          backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--c-line);
}
/* Rot-Weiß-Rot-Beschilderung: zwei rote Streifen oben links + rechts */
.site-header::before,
.site-header::after {
  content: '';
  position: absolute;
  top: 0;
  height: 4px;
  background: var(--c-brand);
  z-index: 1;
  pointer-events: none;
}
.site-header::before { left: 0;  width: 18%; }
.site-header::after  { right: 0; width: 18%; }
.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  height: var(--header-h);
}
.site-header__logo {
  display: flex; align-items: center;
  gap: var(--s-3);
  margin-right: auto;
}
.site-header__logo img { height: 40px; width: auto; }
@media (min-width: 768px) { .site-header__logo img { height: 46px; } }

.site-nav {
  display: none;
}
.site-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: var(--s-6);
}
.site-nav a {
  color: var(--c-ink);
  font-size: 0.95rem;
  font-weight: 500;
  padding: var(--s-2) 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s var(--e-out), color .2s var(--e-out);
}
.site-nav a:hover { color: var(--c-brand); border-bottom-color: var(--c-brand); }
.site-nav a.is-active { color: var(--c-brand); border-bottom-color: var(--c-brand); }
@media (min-width: 1024px) { .site-nav { display: block; } }
@media (min-width: 1024px) { .site-nav ul { gap: var(--s-5); } }
@media (min-width: 1160px) { .site-nav ul { gap: var(--s-6); } }

.site-header .site-header__cta {
  display: none;
}
@media (min-width: 1024px) { .site-header .site-header__cta { display: inline-flex; } }

/* Mobile Menu Toggle */
.nav-toggle {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--c-line-dark);
  border-radius: var(--r-md);
  cursor: pointer;
  color: var(--c-ink);
}
.nav-toggle:hover { border-color: var(--c-brand); color: var(--c-brand); }
.nav-toggle svg { width: 22px; height: 22px; }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* Mobile Navigation Panel */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--c-bg);
  z-index: 40;
  padding: var(--s-6) 1.25rem;
  overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav li + li { margin-top: var(--s-2); }
.mobile-nav a {
  display: block;
  padding: var(--s-4) 0;
  font-size: 1.35rem;
  font-family: var(--f-display);
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-line);
}
.mobile-nav a.is-active { color: var(--c-brand); }
.mobile-nav a.mobile-nav__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  margin-top: var(--s-6);
  padding: 1.05rem 1.5rem;
  font-family: var(--f-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  border-bottom: 0;
  line-height: 1;
}
.mobile-nav a.mobile-nav__cta svg { width: 20px; height: 20px; flex-shrink: 0; }
.mobile-nav__contact {
  margin-top: var(--s-7);
  padding-top: var(--s-6);
  border-top: 1px solid var(--c-line);
  font-size: 0.95rem;
  color: var(--c-ink-2);
}
.mobile-nav__contact strong { display: block; color: var(--c-ink); margin-bottom: var(--s-1); }

/* Body-Scroll-Lock wenn Mobile-Nav offen */
body.nav-open { overflow: hidden; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: var(--s-2);
  padding: 0.85rem 1.5rem;
  font-family: var(--f-sans);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--r-md);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s var(--e-out), color .2s var(--e-out),
              border-color .2s var(--e-out), transform .15s var(--e-out);
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--c-brand);
  color: #fff;
  border-color: var(--c-brand);
}
.btn--primary:hover { background: var(--c-brand-dark); border-color: var(--c-brand-dark); color: #fff; }
.btn--ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-line-dark);
}
.btn--ghost:hover { border-color: var(--c-ink); color: var(--c-ink); }
.btn--light {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.35);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
.btn--light:hover { background: rgba(255,255,255,.22); border-color: #fff; color: #fff; }
.btn--small { padding: 0.55rem 1rem; font-size: 0.85rem; }
.btn svg { width: 18px; height: 18px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: end;
  padding-block: var(--s-9) var(--s-8);
  color: #fff;
  isolation: isolate;
}
.hero--md { min-height: min(60vh, 520px); }
.hero__bg {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,17,15,.15) 0%, rgba(20,17,15,.15) 40%, rgba(20,17,15,.75) 100%),
    linear-gradient(180deg, rgba(20,17,15,.35) 0%, rgba(20,17,15,0) 30%);
}
.hero__content { max-width: 780px; }
.hero__eyebrow {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: var(--s-5);
  padding-bottom: var(--s-3);
  border-bottom: 2px solid var(--c-brand);
  padding-inline: 0 var(--s-6);
}
.hero__title {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.05;
  font-weight: 500;
  margin: 0 0 var(--s-5);
  text-wrap: balance;
}
.hero__title em { font-style: italic; color: #fff; font-weight: 400; }
.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(255,255,255,.9);
  max-width: 60ch;
  margin: 0 0 var(--s-6);
}
.hero__actions { display: flex; gap: var(--s-3); flex-wrap: wrap; }

/* Mini-Hero für Unterseiten */
.page-hero {
  position: relative;
  padding-block: var(--s-9) var(--s-8);
  padding-top: calc(var(--header-h) + 3rem);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,17,15,.55), rgba(20,17,15,.75));
}
.page-hero__title { color: #fff; margin: 0 0 var(--s-3); }
.page-hero__sub { color: rgba(255,255,255,.85); max-width: 62ch; margin: 0; font-size: 1.1rem; }

/* ---------- Section Header ---------- */
.section-head {
  max-width: 720px;
  margin-bottom: var(--s-7);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-bottom: var(--s-3); text-wrap: balance; }
.section-head p { font-size: 1.1rem; }

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .3s var(--e-out), box-shadow .3s var(--e-out), border-color .3s var(--e-out);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: var(--c-line-dark); }
.card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-bg-alt);
}
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--e-out); }
.card:hover .card__img img { transform: scale(1.04); }
.card__body {
  padding: var(--s-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card__title {
  font-family: var(--f-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--c-ink);
  margin: 0 0 var(--s-3);
}
.card__text { color: var(--c-ink-2); margin: 0 0 var(--s-5); flex: 1; }
.card__link {
  font-weight: 600;
  color: var(--c-brand);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 0.95rem;
}
.card__link svg { width: 16px; height: 16px; transition: transform .2s var(--e-out); }
.card:hover .card__link svg { transform: translateX(4px); }

/* Simpler Feature-Kachel für "Kurz gesagt" */
.feature {
  padding: var(--s-6);
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
  height: 100%;
}
.feature__icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-brand);
  background: rgba(179,3,3,.08);
  border-radius: var(--r-md);
  margin-bottom: var(--s-4);
}
.feature__icon svg { width: 22px; height: 22px; }
.feature__title { font-family: var(--f-display); font-size: 1.35rem; font-weight: 500; margin: 0 0 var(--s-2); color: var(--c-ink); }
.feature p { margin: 0; color: var(--c-ink-2); }

/* ---------- Split-Sektion (Bild + Text) ---------- */
.split {
  display: grid;
  gap: var(--s-7);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--s-9); }
  .split--flip .split__media { order: 2; }
}
.split__media img {
  width: 100%;
  border-radius: var(--r-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--sh-2);
}
.split__body h2 { margin-bottom: var(--s-4); }
.split__body p { font-size: 1.05rem; }

/* ---------- Leistungs-Detail-Block (auf Leistungen-Seite) ---------- */
.leistung-block {
  padding-block: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--c-line);
}
.leistung-block:first-of-type { border-top: 0; }

/* ---------- Region-Liste (Legacy Pills) ---------- */
.regions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-5);
}
.regions span {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid var(--c-line-dark);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--c-ink);
  background: #fff;
}

/* ---------- Region Section (Cards + Stats + Karten-Button) ---------- */
.region-sec {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* dezente Straßen-Schwung-Deko (SVG als Background) */
.region-sec::before {
  content: '';
  position: absolute;
  right: -8%; top: 10%;
  width: 520px; height: 520px;
  background-image: radial-gradient(circle, rgba(179,3,3,.05) 0%, rgba(179,3,3,0) 60%);
  z-index: -1;
  pointer-events: none;
}
.region-grid {
  display: grid;
  gap: var(--s-8);
  align-items: start;
}
@media (min-width: 960px) {
  .region-grid { grid-template-columns: 5fr 7fr; gap: var(--s-9); }
}

.region-lead h2 { margin-bottom: var(--s-4); text-wrap: balance; }
.region-lead p { font-size: 1.05rem; }
.region-lead .accent { color: var(--c-brand); font-style: italic; }
.region-lead__meta {
  font-size: 0.9rem !important;
  color: var(--c-ink-mute);
  border-left: 2px solid var(--c-brand);
  padding-left: var(--s-3);
  margin: var(--s-5) 0 var(--s-6);
}
.region-lead__cta {
  margin-top: var(--s-4);
}

.region-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (min-width: 640px) {
  .region-cards { grid-template-columns: 1fr 1fr; }
}
.region-card {
  background: #fff;
  padding: var(--s-6);
  transition: background .2s var(--e-out);
  position: relative;
}
.region-card:hover { background: var(--c-bg-alt); }
.region-card h3 {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--c-ink);
  margin: 0 0 var(--s-2) 0;
  line-height: 1.2;
  padding-bottom: var(--s-2);
  position: relative;
}
.region-card h3::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--c-brand);
  margin-top: var(--s-2);
}
.region-card__cities {
  font-size: 0.92rem;
  color: var(--c-ink-2);
  line-height: 1.6;
  margin: var(--s-3) 0 0 0;
}

/* ---------- Media-Platzhalter (wenn noch kein Foto da ist) ---------- */
.media-placeholder {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, #F1EDE5 0%, #E4DFD6 100%);
  border: 3px solid var(--c-brand);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  box-shadow: 0 8px 24px rgba(179,3,3,.08), 0 2px 6px rgba(0,0,0,.06);
}
.media-placeholder::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--c-brand) 0%, var(--c-brand-dark) 100%);
}
.media-placeholder svg {
  width: 64px; height: 64px;
  color: var(--c-line-dark);
}
.media-placeholder span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-ink-mute);
}

/* ---------- Team-Portraits (Über uns) ---------- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .team-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-6); }
}

.team-portrait {
  text-align: center;
}
.team-portrait__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #F1EDE5 0%, #E4DFD6 100%);
  border: 3px solid var(--c-brand);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(179,3,3,.08), 0 2px 6px rgba(0,0,0,.06);
  transition: transform .3s var(--e-out), box-shadow .3s var(--e-out);
}
.team-portrait:hover .team-portrait__frame {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(179,3,3,.14), 0 4px 10px rgba(0,0,0,.08);
}
/* Deko: kleiner roter Bogen im Rahmen unten */
.team-portrait__frame::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--c-brand) 0%, var(--c-brand-dark) 100%);
}
.team-portrait__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  color: var(--c-ink-mute);
  padding: var(--s-5);
  text-align: center;
}
.team-portrait__placeholder svg {
  width: 56px; height: 56px;
  color: var(--c-line-dark);
}
.team-portrait__placeholder span {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-ink-mute);
}
/* Wenn irgendwann echtes Bild da: <img class="team-portrait__img"> */
.team-portrait__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-portrait__body {
  padding-top: var(--s-5);
}
.team-portrait__name {
  font-family: var(--f-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--c-ink);
  margin: 0;
  line-height: 1.2;
}
.team-portrait__role {
  font-family: var(--f-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-brand);
  margin: var(--s-2) 0 var(--s-2);
  display: block;
}
.team-portrait__note {
  font-size: 0.9rem;
  color: var(--c-ink-2);
  margin: 0;
  line-height: 1.5;
}

/* ---------- Standort-Karte (Kontakt) ---------- */
.standort-card {
  background: var(--c-dark);
  color: var(--c-dark-ink);
  padding: var(--s-7);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.standort-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 100%, rgba(179,3,3,.22) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.standort-card__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(238,233,223,.6);
  display: block;
  margin-bottom: var(--s-3);
}
.standort-card h2 {
  color: #fff;
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  margin: 0 0 var(--s-4);
  line-height: 1.15;
}
.standort-card__addr {
  color: rgba(238,233,223,.85);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: var(--s-5);
}
.standort-card__addr strong { color: #fff; display: block; margin-bottom: var(--s-1); }

/* ---------- CTA-Streifen ---------- */
.cta-strip {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--c-dark);
  color: var(--c-dark-ink);
  position: relative;
  overflow: hidden;
}
.cta-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(179,3,3,.18) 0%, transparent 60%);
  pointer-events: none;
}
.cta-strip__inner {
  display: grid;
  gap: var(--s-6);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 800px) {
  .cta-strip__inner { grid-template-columns: 1fr auto; }
}
.cta-strip h2 { color: #fff; margin: 0 0 var(--s-2); }
.cta-strip p { color: rgba(238,233,223,.85); margin: 0; max-width: 55ch; }
.cta-strip__actions { display: flex; gap: var(--s-3); flex-wrap: wrap; }

/* ---------- Formular ---------- */
.form {
  display: grid;
  gap: var(--s-4);
  max-width: 640px;
}
.form__row {
  display: grid;
  gap: var(--s-4);
}
@media (min-width: 640px) {
  .form__row--2 { grid-template-columns: 1fr 1fr; }
}
.form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: var(--s-2);
  letter-spacing: 0.01em;
}
.form label .req { color: var(--c-brand); margin-left: 2px; }
.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--f-sans);
  font-size: 1rem;
  color: var(--c-ink);
  background: #fff;
  border: 1px solid var(--c-line-dark);
  border-radius: var(--r-md);
  transition: border-color .2s var(--e-out), box-shadow .2s var(--e-out);
}
.form textarea { min-height: 150px; resize: vertical; }
.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: var(--c-brand);
  box-shadow: 0 0 0 3px rgba(179,3,3,.12);
  outline: none;
}
.form__consent {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--c-ink-2);
  line-height: 1.5;
}
.form__consent input { width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; accent-color: var(--c-brand); }
.form__hint { font-size: 0.85rem; color: var(--c-ink-mute); }

/* Honeypot — für User unsichtbar, Bots füllen es aus */
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ---------- Kontakt-Grid ---------- */
.contact-grid {
  display: grid;
  gap: var(--s-8);
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.35fr; }
}
.contact-methods {
  display: grid;
  gap: var(--s-4);
}
.contact-method {
  padding: var(--s-7) var(--s-6);
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color .2s var(--e-out), box-shadow .2s var(--e-out);
}
.contact-method:hover {
  border-color: var(--c-line-dark);
  box-shadow: var(--sh-1);
}
.contact-method__icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(179,3,3,.08);
  color: var(--c-brand);
  border-radius: var(--r-md);
  margin-bottom: var(--s-3);
  flex-shrink: 0;
}
.contact-method__icon svg { width: 22px; height: 22px; }
.contact-method h3 { font-family: var(--f-display); margin: 0 0 var(--s-2); font-size: 1.4rem; }
.contact-method__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
  padding-bottom: var(--s-4);
  position: relative;
  width: 100%;
}
.contact-method__head::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  background: var(--c-brand);
}
.contact-method__head .contact-method__icon { margin-bottom: 0; }
.contact-method__head h3 { margin: 0; }
.contact-method a { font-weight: 600; color: var(--c-ink); font-size: 1.05rem; }
.contact-method a:hover { color: var(--c-brand); }
.contact-method p { margin: 0; font-size: 0.95rem; color: var(--c-ink-mute); }
.contact-method p + p { margin-top: var(--s-2); }
.contact-method > *:last-child { margin-top: var(--s-4); font-size: 0.9rem; }

.map-embed {
  width: 100%;
  aspect-ratio: 16/10;
  border: 0;
  border-radius: var(--r-lg);
  background: var(--c-bg-alt);
}

/* ---------- Galerie (Camping) ---------- */
.gallery {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); } }
.gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-md);
  transition: transform .4s var(--e-out);
}
.gallery a { display: block; overflow: hidden; border-radius: var(--r-md); }
.gallery a:hover img { transform: scale(1.05); }

/* ---------- Info-Blöcke (Camping praktisches) ---------- */
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--s-4);
}
.info-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: var(--s-4);
  align-items: start;
}
.info-list .info-list__icon {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-brand);
}
.info-list strong { display: block; color: var(--c-ink); margin-bottom: var(--s-1); }
.info-list p { margin: 0; color: var(--c-ink-2); font-size: 0.95rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-dark);
  color: var(--c-dark-ink);
  padding-block: var(--s-8) var(--s-6);
  margin-bottom: 72px; /* Platz für mobile Sticky-Bar */
}
@media (min-width: 1024px) { .site-footer { margin-bottom: 0; } }
.site-footer a { color: var(--c-dark-ink); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  gap: var(--s-7);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand img { height: 48px; width: auto; margin-bottom: var(--s-4); filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(238,233,223,.7); font-size: 0.95rem; }
.footer-col h4 {
  font-family: var(--f-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(238,233,223,.55);
  margin: 0 0 var(--s-4);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li + li { margin-top: var(--s-2); }
.footer-col a {
  font-size: 0.95rem;
  color: rgba(238,233,223,.85);
}
.footer-bottom {
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(238,233,223,.15);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4) var(--s-5);
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(238,233,223,.55);
}
.footer-bottom a { color: rgba(238,233,223,.75); }

/* ---------- Mobile Sticky Anruf-Bar ---------- */
.sticky-call {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 30;
  display: flex;
  gap: 0;
  background: var(--c-dark);
  border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}
.sticky-call a {
  flex: 1;
  padding: 0.95rem 0.5rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
}
.sticky-call a + a { border-left: 1px solid rgba(255,255,255,.1); }
.sticky-call a.primary { background: var(--c-brand); }
.sticky-call a.primary:hover { background: var(--c-brand-dark); color: #fff; }
.sticky-call svg { width: 18px; height: 18px; }
@media (min-width: 1024px) { .sticky-call { display: none; } }

/* ---------- Hilfsklassen ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  background: var(--c-brand);
  color: #fff;
  z-index: 100;
  font-weight: 600;
}
.skip-link:focus-visible {
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  color: #fff;
}
