/* umzugsfirma-kanton-zug.ch — „Zug – See, Klarheit, Präzision“ */
:root {
  --lake: #0b3a4a;
  --lake-deep: #062631;
  --petrol: #0f5568;
  --teal: #2c7a8a;
  --glacier: #e8f2f4;
  --mist: #f3f8f9;
  --paper: #fbfdfd;
  --white: #ffffff;
  --ink: #0e262e;
  --text: #223a42;
  --muted: #4d6770;
  --rule: #c5d8dd;
  --rule-soft: #dce9ec;
  --brass: #c98b2e;
  --brass-hi: #dea651;
  --brass-ink: #221503;
  --link: #0c566b;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --maxw: 1180px;
  --gutter: clamp(18px, 4vw, 40px);
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
}
@media (min-width: 900px) { body { font-size: 1.125rem; } }
body.nav-open { overflow: hidden; }

img, svg { max-width: 100%; }
p, ul, ol, dl, table { margin-block: 0 1.1em; }
ul, ol { padding-left: 1.3em; }
li { margin-bottom: .35em; }
strong { color: var(--ink); font-weight: 650; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.005em;
  margin-block: 0 .55em;
  overflow-wrap: break-word;
  hyphens: auto;
}
h1 { font-size: clamp(2.05rem, 4.6vw, 3.45rem); line-height: 1.08; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.42rem); }
h4 { font-size: 1.1rem; }

a { color: var(--link); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--lake); text-decoration-color: var(--brass); text-decoration-thickness: 2px; }
:focus-visible { outline: 3px solid var(--brass); outline-offset: 3px; border-radius: 2px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--brass); color: var(--brass-ink); padding: 10px 16px; font-weight: 600; }
.skip-link:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 48px; padding: .7em 1.35em;
  font: 600 1rem/1.2 var(--sans); letter-spacing: .01em;
  border: 1px solid transparent; border-radius: 2px;
  text-decoration: none; cursor: pointer; text-align: center;
  transition: background-color .15s, color .15s, border-color .15s;
}
.btn-brass { background: var(--brass); color: var(--brass-ink); border-color: var(--brass); }
.btn-brass:hover { background: var(--brass-hi); border-color: var(--brass-hi); color: var(--brass-ink); }
.btn-line { background: transparent; color: var(--lake); border-color: var(--lake); }
.btn-line:hover { background: var(--lake); color: var(--glacier); }
.btn-lg { min-height: 56px; padding-inline: 1.8em; font-size: 1.05rem; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; position: relative; z-index: 2; }
.brand:hover { color: var(--ink); }
.brand__logo { width: 42px; height: 42px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__top { font: 600 .72rem/1.2 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.brand__name { font: 600 1.28rem/1.1 var(--serif); color: var(--ink); }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav__list { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.site-nav__list li { margin: 0; }
.site-nav__list a {
  color: var(--ink); text-decoration: none; font-weight: 500; font-size: 1rem;
  padding-block: 6px; border-bottom: 2px solid transparent;
}
.site-nav__list a:hover, .site-nav__list a[aria-current="page"] { border-bottom-color: var(--brass); color: var(--lake); }
.site-nav__cta { min-height: 44px; font-size: .95rem; }

.nav-toggle {
  display: none; position: relative; z-index: 2;
  width: 46px; height: 46px; padding: 0;
  background: transparent; border: 1px solid var(--rule); border-radius: 2px;
  color: var(--ink); cursor: pointer;
}
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
  position: absolute; left: 50%; width: 22px; height: 2px; margin-left: -11px;
  background: currentColor; transition: transform .2s, opacity .2s; content: "";
}
.nav-toggle__bars { top: 50%; margin-top: -1px; }
.nav-toggle__bars::before { top: -7px; }
.nav-toggle__bars::after { top: 7px; }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; inset: 0; z-index: 1;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 32px;
    padding: calc(var(--header-h) + 36px) var(--gutter) 40px;
    background: var(--lake);
    overflow-y: auto;
    visibility: hidden; opacity: 0;
    transition: opacity .2s, visibility .2s;
  }
  .site-nav.is-open { visibility: visible; opacity: 1; }
  .site-nav__list { flex-direction: column; gap: 0; }
  .site-nav__list li { border-bottom: 1px solid rgba(232, 242, 244, .22); }
  .site-nav__list a {
    display: block; padding: 18px 0; border: 0;
    font: 600 1.7rem/1.2 var(--serif); color: var(--glacier);
  }
  .site-nav__list a:hover, .site-nav__list a[aria-current="page"] { color: var(--brass-hi); }
  .site-nav__cta { min-height: 56px; font-size: 1.05rem; }
  body.nav-open .site-header { border-bottom-color: transparent; }
  body.nav-open .brand__name { color: var(--white); }
  body.nav-open .brand__top { color: #b9d3d9; }
  body.nav-open .nav-toggle { color: var(--glacier); border-color: rgba(232, 242, 244, .4); }
  body.nav-open .nav-toggle__bars { background: transparent; }
  body.nav-open .nav-toggle__bars::before { transform: translateY(7px) rotate(45deg); background: var(--glacier); }
  body.nav-open .nav-toggle__bars::after { transform: translateY(-7px) rotate(-45deg); background: var(--glacier); }
  body.nav-open .mobile-cta { display: none; }
}
@media (max-width: 400px) {
  .brand__logo { width: 36px; height: 36px; }
  .brand__name { font-size: 1.12rem; }
}

/* ---------- Hero ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--glacier) 0%, var(--mist) 55%, var(--paper) 100%);
  border-bottom: 1px solid var(--rule);
  padding-block: clamp(36px, 6vw, 80px) clamp(48px, 7vw, 92px);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-copy { min-width: 0; }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: .88rem; color: var(--muted); margin-bottom: 22px; }
.crumbs a { color: var(--muted); }
.eyebrow {
  display: inline-block; margin-bottom: 18px;
  font: 600 .8rem/1.3 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--petrol);
  padding-top: 10px; border-top: 2px solid var(--brass);
}
.hero-lead { font-size: clamp(1.08rem, 1.5vw, 1.24rem); color: var(--text); max-width: 60ch; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; }
.hero-note { font-size: .92rem; color: var(--muted); }
.hero-points { display: flex; flex-wrap: wrap; gap: 8px 24px; list-style: none; padding: 0; margin: 26px 0 0; font-size: .95rem; color: var(--ink); }
.hero-points li { margin: 0; padding-left: 20px; position: relative; }
.hero-points li::before { content: ""; position: absolute; left: 0; top: .62em; width: 10px; height: 2px; background: var(--brass); }

.hero-visual { position: relative; min-width: 0; color: var(--brass); padding: 0 0 26px 18px; }
.hero-visual::before {
  content: ""; position: absolute; left: 0; top: 18px; right: 18px; bottom: 8px;
  border: 1px solid var(--rule);
}
.hero-visual .media { aspect-ratio: 4 / 5; position: relative; }
.hero-visual .wave { position: absolute; left: -6%; right: -4%; bottom: 0; width: 110%; height: 44px; }
.hero-visual--line { align-self: end; padding: 0; }
.hero-visual--line::before { display: none; }
.hero-visual--line .wave { position: static; width: 100%; height: 70px; }
.page-hero--plain { padding-block: 40px 44px; }
.page-hero--plain h1 { margin: 0; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-visual .media { aspect-ratio: 16 / 10; }
  .hero-visual .wave { left: 0; width: 100%; }
  .hero-visual--line { display: none; }
}

/* ---------- Media slots (Platzhalter bis WebP) ---------- */
.media {
  display: block; position: relative; width: 100%; min-height: 200px; overflow: hidden;
  background-color: var(--lake);
  background-image:
    linear-gradient(180deg, rgba(6, 38, 49, 0) 48%, rgba(6, 38, 49, .6) 100%),
    repeating-linear-gradient(172deg, rgba(232, 242, 244, .07) 0 1px, transparent 1px 18px),
    radial-gradient(90% 60% at 78% 12%, rgba(222, 166, 81, .45) 0%, rgba(222, 166, 81, 0) 60%),
    linear-gradient(165deg, #3f8e9e 0%, #145c6f 40%, #0b3a4a 72%, #062631 100%);
}
.media::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 30%; height: 34%;
  background: linear-gradient(180deg, rgba(232, 242, 244, .22), rgba(232, 242, 244, .05));
  clip-path: polygon(0 100%, 0 62%, 14% 40%, 26% 58%, 42% 12%, 57% 46%, 68% 30%, 84% 56%, 100% 36%, 100% 100%);
}
.media[data-img="zug-kosten"] { background-image: linear-gradient(180deg, rgba(6,38,49,0) 50%, rgba(6,38,49,.55)), repeating-linear-gradient(90deg, rgba(232,242,244,.06) 0 1px, transparent 1px 26px), radial-gradient(70% 55% at 22% 20%, rgba(222,166,81,.5), rgba(222,166,81,0) 62%), linear-gradient(150deg, #2f7f8f, #0f5568 50%, #062631); }
.media[data-img="zug-umzug-nach-zug"] { background-image: linear-gradient(180deg, rgba(6,38,49,0) 45%, rgba(6,38,49,.6)), repeating-linear-gradient(8deg, rgba(232,242,244,.07) 0 1px, transparent 1px 20px), radial-gradient(80% 50% at 50% 5%, rgba(232,242,244,.5), rgba(232,242,244,0) 60%), linear-gradient(180deg, #5d9fad, #185f72 45%, #0b3a4a 80%); }
.media[data-img="zug-relocation"] { background-image: linear-gradient(180deg, rgba(6,38,49,0) 50%, rgba(6,38,49,.6)), repeating-radial-gradient(circle at 80% 110%, rgba(232,242,244,.08) 0 1px, transparent 1px 22px), radial-gradient(60% 50% at 18% 18%, rgba(222,166,81,.42), rgba(222,166,81,0) 62%), linear-gradient(200deg, #3a8797, #0f5568 55%, #062631); }
.media[data-img="zug-privatumzug"] { background-image: linear-gradient(180deg, rgba(6,38,49,0) 50%, rgba(6,38,49,.55)), repeating-linear-gradient(135deg, rgba(232,242,244,.06) 0 1px, transparent 1px 16px), radial-gradient(75% 55% at 70% 25%, rgba(222,166,81,.38), rgba(222,166,81,0) 60%), linear-gradient(160deg, #478f9c, #135a6c 50%, #0b3a4a); }
.media[data-img="zug-firmenumzug"] { background-image: linear-gradient(180deg, rgba(6,38,49,0) 40%, rgba(6,38,49,.65)), repeating-linear-gradient(0deg, rgba(232,242,244,.07) 0 1px, transparent 1px 24px), repeating-linear-gradient(90deg, rgba(232,242,244,.05) 0 1px, transparent 1px 48px), linear-gradient(170deg, #266f80, #0b3a4a 60%, #041d26); }
.media[data-img="zug-reinigung"] { background-image: linear-gradient(180deg, rgba(6,38,49,0) 55%, rgba(6,38,49,.45)), repeating-linear-gradient(160deg, rgba(255,255,255,.09) 0 1px, transparent 1px 14px), radial-gradient(80% 60% at 30% 15%, rgba(232,242,244,.6), rgba(232,242,244,0) 60%), linear-gradient(170deg, #6fb0bc, #23707f 50%, #0f5568); }
.media[data-img="zug-ratgeber"] { background-image: linear-gradient(180deg, rgba(6,38,49,0) 50%, rgba(6,38,49,.55)), repeating-linear-gradient(0deg, rgba(232,242,244,.08) 0 1px, transparent 1px 30px), radial-gradient(70% 50% at 80% 80%, rgba(222,166,81,.4), rgba(222,166,81,0) 60%), linear-gradient(145deg, #34808f, #0f5568 55%, #0b3a4a); }
.media-inline { position: relative; aspect-ratio: 3 / 2; border: 1px solid var(--rule); }

/* ---------- Sections ---------- */
.section { padding-block: clamp(56px, 8vw, 96px); }
.section + .section { border-top: 1px solid var(--rule-soft); }
.section--tint { background: var(--mist); }
.section-head { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 8px 22px; align-items: baseline; margin-bottom: clamp(24px, 3vw, 38px); max-width: 880px; }
.section-head h2 { margin: 0; }
.section-head .num {
  font: 600 .95rem/1 var(--serif); letter-spacing: .12em; color: var(--brass);
  padding-top: 10px; border-top: 2px solid var(--brass); min-width: 2.2em;
}
.section-head p { grid-column: 2; margin: 8px 0 0; color: var(--muted); }
@media (max-width: 560px) {
  .section-head { grid-template-columns: minmax(0, 1fr); }
  .section-head .num { justify-self: start; }
  .section-head p { grid-column: 1; }
}

.prose { max-width: 74ch; }
.prose > p:last-child { margin-bottom: 0; }
.lede { font-size: 1.14em; color: var(--ink); }
.muted { color: var(--muted); }
.small { font-size: .9rem; }

.split { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.split--even { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.text-center { text-align: center; }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 760px) { .split, .split--even, .grid-2, .grid-3 { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 520px) { .grid-4 { grid-template-columns: minmax(0, 1fr); } }

.rule { border: 0; border-top: 1px solid var(--rule); margin-block: 40px; }

/* ---------- Cards ---------- */
.card { background: var(--white); border: 1px solid var(--rule); padding: clamp(20px, 2.5vw, 28px); border-radius: 2px; color: var(--text); min-width: 0; }
.card h3 { margin-bottom: .45em; }
.card p:last-child, .card ul:last-child { margin-bottom: 0; }
.card--link { display: flex; flex-direction: column; text-decoration: none; transition: border-color .15s, transform .15s; }
.card--link:hover { border-color: var(--lake); transform: translateY(-2px); color: var(--text); }
.card--link .card__more { margin-top: auto; padding-top: 14px; font-weight: 600; color: var(--link); }
.card__label { font: 600 .76rem/1.3 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--petrol); margin-bottom: 10px; }

/* ---------- Dark lake section ---------- */
.section--lake { background: var(--lake); color: var(--glacier); border-top: 0; }
.section--lake + .section { border-top: 0; }
.section--lake h2, .section--lake h3, .section--lake strong { color: var(--white); }
.section--lake p, .section--lake li { color: var(--glacier); }
.section--lake .section-head p, .section--lake .muted { color: #b9d3d9; }
.section--lake a { color: var(--brass-hi); }
.section--lake a:hover { color: var(--white); }
.section--lake .card { background: rgba(232, 242, 244, .04); border-color: rgba(232, 242, 244, .26); color: var(--glacier); }
.section--lake .card__label { color: var(--brass-hi); }
.stat { font: 600 clamp(1.9rem, 3.4vw, 2.6rem)/1.05 var(--serif); color: var(--white); margin-bottom: 8px; }
.section--lake .src { font-size: .86rem; color: #b9d3d9; margin-top: 12px; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--rule); background: var(--white); margin-block: 22px 26px; }
table { width: 100%; border-collapse: collapse; min-width: 560px; margin: 0; font-size: .96rem; }
caption { text-align: left; padding: 14px 16px; font: 600 1rem/1.3 var(--serif); color: var(--ink); border-bottom: 1px solid var(--rule); }
th, td { text-align: left; vertical-align: top; padding: 12px 16px; border-bottom: 1px solid var(--rule-soft); }
thead th { background: var(--glacier); color: var(--ink); font-weight: 650; font-size: .9rem; letter-spacing: .02em; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
tbody th { color: var(--ink); font-weight: 600; }
td.num, th.num { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }

/* ---------- Boxes ---------- */
.fact { background: var(--glacier); border-left: 3px solid var(--brass); padding: 20px 24px; margin-block: 26px; color: var(--text); }
.fact__label { font: 600 .78rem/1.3 var(--sans); letter-spacing: .15em; text-transform: uppercase; color: var(--petrol); margin-bottom: 8px; }
.fact p { margin-bottom: .6em; }
.fact p:last-child { margin-bottom: 0; }
.fact__src { font-size: .88rem; color: var(--muted); }
.note { border: 1px solid var(--rule); background: var(--white); padding: 18px 22px; margin-block: 22px; font-size: .96rem; }
.note strong { display: block; margin-bottom: 4px; font-family: var(--serif); font-size: 1.08rem; }
.en-box { border: 1px solid var(--lake); background: var(--white); padding: 22px 26px; margin-block: 0; }
.en-box h2 { font-size: 1.35rem; }

/* ---------- Steps ---------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--rule); counter-reset: step; }
.steps > li { counter-increment: step; margin: 0; padding: 28px 28px 8px 0; border-right: 1px solid var(--rule-soft); }
.steps > li + li { padding-left: 28px; }
.steps > li:last-child { border-right: 0; }
.steps > li::before { content: "0" counter(step); display: block; font: 600 2.6rem/1 var(--serif); color: var(--brass); margin-bottom: 14px; }
@media (max-width: 760px) {
  .steps { grid-template-columns: minmax(0, 1fr); }
  .steps > li, .steps > li + li { padding: 24px 0 8px; border-right: 0; border-bottom: 1px solid var(--rule-soft); }
}

/* ---------- Checklists ---------- */
.checklist { list-style: none; padding: 0; }
.checklist li { position: relative; padding-left: 32px; margin-bottom: .6em; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .32em; width: 16px; height: 16px;
  border: 1.5px solid var(--brass); border-radius: 2px;
}
.checklist li::after {
  content: ""; position: absolute; left: 5px; top: calc(.32em + 3px); width: 5px; height: 9px;
  border: solid var(--lake); border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.section--lake .checklist li::after { border-color: var(--brass-hi); }

/* ---------- Timeline (Ratgeber) ---------- */
.timeline { border-left: 1px solid var(--rule); margin-left: 8px; padding-left: clamp(22px, 4vw, 40px); }
.howto-step, .howto-step-lite { position: relative; padding-bottom: 34px; }
.howto-step:last-child, .howto-step-lite:last-child { padding-bottom: 0; }
.howto-step::before, .howto-step-lite::before {
  content: ""; position: absolute; left: calc(-1 * clamp(22px, 4vw, 40px) - 7px); top: .45em;
  width: 13px; height: 13px; border-radius: 50%; background: var(--paper); border: 2px solid var(--brass);
}
.howto-step .when { font: 600 .8rem/1.3 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--petrol); margin-bottom: 6px; }

/* ---------- Towns ---------- */
.towns { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--rule); border-left: 1px solid var(--rule); }
.towns > li { margin: 0; padding: 22px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); background: var(--white); min-width: 0; }
.towns h3 { font-size: 1.22rem; margin-bottom: 4px; }
.towns .meta { font-size: .85rem; color: var(--petrol); letter-spacing: .02em; margin-bottom: 8px; }
.towns p { font-size: .96rem; margin: 0; }
@media (max-width: 980px) { .towns { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .towns { grid-template-columns: minmax(0, 1fr); } }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--rule); max-width: 880px; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 20px 48px 20px 0;
  font: 600 clamp(1.08rem, 1.6vw, 1.25rem)/1.35 var(--serif); color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 14px; height: 14px; margin-top: -9px;
  border: solid var(--brass); border-width: 0 2px 2px 0; transform: rotate(45deg); transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq-item summary:hover { color: var(--lake); }
.faq-a { padding: 0 0 20px; max-width: 74ch; }
.faq-a p:last-child { margin-bottom: 0; }

/* ---------- Sources ---------- */
.sources { font-size: .92rem; color: var(--muted); padding-left: 1.4em; }
.sources li { margin-bottom: .5em; overflow-wrap: anywhere; }

/* ---------- Home specifics ---------- */
.page-hero--home .hero-visual .media { aspect-ratio: 4 / 4.6; }
.teaser { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px 40px; align-items: center; border: 1px solid var(--rule); border-left: 3px solid var(--brass); background: var(--white); padding: clamp(22px, 3vw, 34px); }
.teaser p { margin: 0; }
@media (max-width: 760px) { .teaser { grid-template-columns: minmax(0, 1fr); } }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0 0 1em; }
.pill-list li { margin: 0; border: 1px solid var(--rule); padding: 4px 12px; font-size: .92rem; background: var(--white); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--lake-deep); color: var(--glacier); padding-block: clamp(40px, 6vw, 64px); position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 60%;
  background: repeating-linear-gradient(175deg, rgba(232, 242, 244, .05) 0 1px, transparent 1px 16px);
  pointer-events: none;
}
.cta-band__inner { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.cta-band__kicker { font: 600 .78rem/1.3 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--brass-hi); margin: 0 0 8px; }
.cta-band__title { font: 600 clamp(1.45rem, 3vw, 2.1rem)/1.2 var(--serif); color: var(--white); margin: 0; max-width: 26ch; }

/* ---------- Footer ---------- */
.site-footer { background: var(--glacier); color: var(--text); border-top: 1px solid var(--rule); padding-block: 56px 0; font-size: .97rem; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: 32px; padding-bottom: 40px; }
.footer-brand p { margin: 16px 0 0; max-width: 34ch; }
.footer-note { font-size: .9rem; color: var(--muted); }
.footer-col__title { font: 600 .78rem/1.3 var(--sans); letter-spacing: .15em; text-transform: uppercase; color: var(--petrol); margin-bottom: 12px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--ink); text-decoration: none; }
.footer-col a:hover { text-decoration: underline; color: var(--lake); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; border-top: 1px solid var(--rule); padding-block: 18px 22px; font-size: .88rem; color: var(--muted); }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--muted); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 440px) { .footer-grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Mobile CTA bar ---------- */
.mobile-cta { display: none; }
@media (max-width: 760px) {
  .mobile-cta {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
    background: var(--paper); border-top: 1px solid var(--rule);
    box-shadow: 0 -6px 18px rgba(6, 38, 49, .08);
  }
  .mobile-cta .btn { width: 100%; }
  body:not(.page-impressum):not(.page-datenschutz) .site-footer { padding-bottom: 76px; }
}

/* ---------- Legal ---------- */
.legal { max-width: 78ch; }
.legal h2 { font-size: 1.45rem; margin-top: 1.6em; }
.legal h2:first-child { margin-top: 0; }

@media (prefers-reduced-motion: reduce) { * { transition: none !important; scroll-behavior: auto !important; } }
@media print { .site-header, .mobile-cta, .cta-band { display: none; } }

/* Feinschliff nach Sichtprüfung */
@media (min-width: 600px) { h1 { hyphens: manual; } }
tbody th { min-width: 7.5em; }
td { min-width: 9em; }
td.num { min-width: 0; }
td:last-child:not(.num) { min-width: 14em; }

/* ---------- Fotos (WebP) ---------- */
img.media { height: auto; min-height: 0; object-fit: cover; background: var(--lake); }
.hero-visual img.media { height: 100%; }
