/* umzugsfirma-kanton-aargau.ch — „Kulturkanton & Flusslandschaft“
   Warm: Waldgrün, Papier, Terrakotta. Keine Frameworks, keine externen Fonts. */
:root {
  --green-900: #152b1e;
  --green-800: #1f3d2b;
  --green-700: #2b5239;
  --green-600: #3a6a4a;
  --green-200: #cfe0cf;
  --green-100: #e6efe2;
  --paper: #f7f1e6;
  --paper-2: #efe5d3;
  --sand: #e6d6bb;
  --white: #fffdf8;
  --ink: #231a14;
  --ink-soft: #4a3d33;
  --terra: #b4471b;
  --terra-dark: #933812;
  --terra-light: #f0b48f;
  --line: #dccbb0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(35, 26, 20, .06), 0 8px 24px rgba(35, 26, 20, .08);
  --head: "Avenir Next", "Segoe UI Variable Display", "Trebuchet MS", system-ui, sans-serif;
  --body: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --wrap: 1160px;
  --gutter: 20px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 1.0625rem/1.7 var(--body);
  overflow-x: hidden;
  overflow-wrap: break-word;
}
@media (min-width: 900px) { body { font-size: 1.125rem; } }
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; }

h1, h2, h3, h4 { font-family: var(--head); color: inherit; line-height: 1.15; margin: 0 0 .6em; letter-spacing: -.01em; }
h1 { font-weight: 800; font-size: clamp(2.05rem, 5.4vw, 3.75rem); letter-spacing: -.02em; }
h2 { font-weight: 800; font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-weight: 700; font-size: clamp(1.18rem, 2vw, 1.35rem); }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.3em; }
li { margin-bottom: .35em; }
a { color: var(--terra-dark); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--terra); }
strong { font-weight: 700; }
:focus-visible { outline: 3px solid var(--terra); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--ink); color: var(--paper); padding: 10px 16px; border-radius: 8px; }
.skip:focus { top: 12px; color: var(--paper); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font: 700 1rem/1.2 var(--head); text-decoration: none; text-align: center;
  padding: .85em 1.5em; border-radius: 999px; border: 2px solid transparent;
  transition: background-color .15s, transform .15s, box-shadow .15s;
}
.btn--primary { background: var(--terra); color: #fff; box-shadow: 0 4px 0 var(--terra-dark); }
.btn--primary:hover { background: var(--terra-dark); color: #fff; transform: translateY(1px); box-shadow: 0 3px 0 #6f2a0d; }
.btn--ghost { border-color: currentColor; color: var(--green-800); background: transparent; }
.btn--ghost:hover { background: var(--green-800); color: var(--paper); }
.btn--lg { font-size: 1.1rem; padding: 1em 1.9em; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper); /* bewusst ohne backdrop-filter */
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--green-800); min-width: 0; }
.brand:hover { color: var(--green-800); }
.logo-mark { flex: 0 0 auto; display: block; }
.brand-text { font: 500 1rem/1.1 var(--head); letter-spacing: -.01em; }
.brand-text strong { font-weight: 800; display: block; font-size: 1.12rem; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav-list { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-list li { margin: 0; }
.nav-list a { font: 600 1rem/1 var(--head); color: var(--ink); text-decoration: none; padding: 8px 0; border-bottom: 3px solid transparent; }
.nav-list a:hover, .nav-list a[aria-current="page"] { border-bottom-color: var(--terra); color: var(--ink); }
.nav-cta { padding: .7em 1.25em; }

.nav-toggle {
  display: none; position: relative; z-index: 120;
  width: 46px; height: 46px; border-radius: 12px; border: 2px solid var(--green-800);
  background: var(--paper); color: var(--green-800); cursor: pointer; padding: 0;
}
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  content: ""; position: absolute; left: 11px; width: 20px; height: 2.5px; border-radius: 2px; background: currentColor; transition: transform .2s, opacity .2s;
}
.nav-toggle-bars { top: 20px; }
.nav-toggle-bars::before { left: 0; top: -7px; }
.nav-toggle-bars::after { left: 0; top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 0; z-index: 110;
    display: none; flex-direction: column; justify-content: center; align-items: stretch; gap: 28px;
    background: var(--green-800); padding: 96px 28px 40px;
  }
  .nav.is-open { display: flex; }
  .nav-list { flex-direction: column; gap: 6px; text-align: center; }
  .nav-list a { display: block; color: var(--paper); font-size: 1.6rem; font-weight: 800; padding: 14px 0; border: 0; }
  .nav-list a:hover, .nav-list a[aria-current="page"] { color: var(--terra-light); }
  .nav-cta { font-size: 1.15rem; padding: 1em; }
  body.nav-open .nav-toggle { background: var(--paper); border-color: var(--paper); position: fixed; right: var(--gutter); top: 12px; }
  .brand-text { font-size: .9rem; }
  .brand-text strong { font-size: 1rem; }
}

/* ---------- Hero ---------- */
.hero-band {
  position: relative; color: var(--paper); text-align: center;
  background:
    radial-gradient(ellipse 60% 80% at 85% 10%, rgba(180, 71, 27, .35), transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(156, 195, 162, .22), transparent 60%),
    linear-gradient(160deg, var(--green-700) 0%, var(--green-800) 55%, var(--green-900) 100%);
  padding-block: 56px 120px;
  overflow: hidden;
}
.hero-band::after { /* Flusswellen */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 90px; opacity: .22;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='30' viewBox='0 0 160 30'%3E%3Cpath d='M0 15c20-12 40 12 80 0s60 12 80 0' fill='none' stroke='%23f7f1e6' stroke-width='2'/%3E%3C/svg%3E") repeat-x 0 0 / 160px 30px,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='30' viewBox='0 0 160 30'%3E%3Cpath d='M0 15c20-12 40 12 80 0s60 12 80 0' fill='none' stroke='%23f7f1e6' stroke-width='2'/%3E%3C/svg%3E") repeat-x 60px 34px / 160px 30px;
}
.hero-inner { position: relative; z-index: 1; max-width: 900px; }
.hero--home .hero-band { padding-block: 72px 150px; }
.hero h1 { color: #fffaf0; margin-bottom: .4em; }
.eyebrow {
  display: inline-block; font: 700 .82rem/1 var(--head); letter-spacing: .12em; text-transform: uppercase;
  color: var(--green-900); background: var(--terra-light); padding: .6em 1.1em; border-radius: 999px; margin-bottom: 22px;
}
.lead { font-size: clamp(1.08rem, 2vw, 1.28rem); line-height: 1.6; color: #efe6d6; max-width: 760px; margin-inline: auto; }
.hero-actions { margin: 30px 0 18px; display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.hero-actions .btn--primary { box-shadow: 0 4px 0 #6f2a0d; }
.hero-points { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; font: 600 .98rem/1.3 var(--head); color: #efe6d6; }
.hero-points li { display: inline-flex; align-items: center; gap: 6px; margin: 0; }
.hero-points .ico { width: 20px; height: 20px; color: var(--terra-light); }
.crumbs { font-size: .9rem; margin-bottom: 20px; color: #d9cdb8; display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
.crumbs a { color: #fffaf0; }
.hero-media-wrap { margin-top: -96px; position: relative; z-index: 2; }
.hero--home .hero-media-wrap { margin-top: -120px; }
.hero--legal { background: var(--green-800); color: var(--paper); text-align: center; padding-block: 48px; }
.hero--legal h1 { color: #fffaf0; font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 0; }

/* ---------- Media-Platzhalter (bis WebP-Fotos vorliegen) ---------- */
.media {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; width: 100%;
  background-color: var(--green-600);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='24' viewBox='0 0 120 24'%3E%3Cpath d='M0 12c15-9 30 9 60 0s45 9 60 0' fill='none' stroke='%23f7f1e6' stroke-opacity='.25' stroke-width='2'/%3E%3C/svg%3E"),
    linear-gradient(180deg, transparent 55%, rgba(21, 43, 30, .55) 100%),
    radial-gradient(ellipse 70% 50% at 30% 100%, #2b5239 0 60%, transparent 61%),
    radial-gradient(ellipse 80% 60% at 85% 100%, #3a6a4a 0 58%, transparent 59%),
    radial-gradient(circle at 78% 26%, #f0b48f 0 9%, transparent 10%),
    linear-gradient(180deg, #e8c9a2 0%, #d7a47a 45%, #9cb89a 100%);
  background-size: 120px 24px, auto, auto, auto, auto, auto;
  background-position: 0 88%, 0 0, 0 0, 0 0, 0 0, 0 0;
  background-repeat: repeat-x, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  box-shadow: var(--shadow);
}
.media--hero { aspect-ratio: 21 / 8; border: 6px solid var(--white); }
@media (max-width: 640px) {
  .media--hero { aspect-ratio: 16 / 10; border-width: 4px; }
  .hero-band { padding-block: 40px 90px; }
  .hero--home .hero-band { padding-block: 48px 100px; }
  .hero-media-wrap, .hero--home .hero-media-wrap { margin-top: -64px; }
  .eyebrow { font-size: .7rem; letter-spacing: .06em; padding: .6em .9em; line-height: 1.3; }
}

/* ---------- Sektionen ---------- */
.section { padding-block: 72px; }
@media (min-width: 900px) { .section { padding-block: 96px; } }
.section--paper { background: var(--paper); }
.section--sand { background: var(--paper-2); }
.section--green { background: var(--green-800); color: #f3ebdc; }
.section--green h2, .section--green h3 { color: #fffaf0; }
.section--green a { color: var(--terra-light); }
.section--green a:hover { color: #fff; }
.section-head { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.section-head p { color: var(--ink-soft); }
.section--green .section-head p { color: #e3d8c4; }
.kicker { display: block; font: 800 .8rem/1 var(--head); letter-spacing: .14em; text-transform: uppercase; color: var(--terra); margin-bottom: 12px; }
.section--green .kicker { color: var(--terra-light); }

.prose { max-width: 780px; margin-inline: auto; }
.prose h2 { margin-top: 1.4em; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.4em; }

.split { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1.1fr .9fr; gap: 64px; }
  .split--rev > :first-child { order: 2; }
}

/* ---------- Karten ---------- */
.cards { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.cards--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.section--green .btn--primary, .section--green .btn--primary:hover, .card .btn--primary, .card .btn--primary:hover { color: #fff; }
.cards--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); }
.card {
  background: var(--white); color: var(--ink); border-radius: var(--radius); padding: 26px;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.card h3 { color: var(--green-800); }
.card p:last-child, .card ul:last-child { margin-bottom: 0; }
.card a { color: var(--terra-dark); }
.section--green .card { color: var(--ink); border-color: transparent; }
.section--green .card h3 { color: var(--green-800); }
.section--green .card a { color: var(--terra-dark); }
.card--link { text-decoration: none; display: block; transition: transform .15s, box-shadow .15s; }
.card--link:hover { transform: translateY(-3px); color: var(--ink); }
.card--link .more { font: 700 .98rem/1 var(--head); color: var(--terra-dark); }

.icon-badge {
  display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 14px;
  background: var(--green-100); color: var(--green-800); margin-bottom: 14px;
}
.icon-badge .ico { width: 28px; height: 28px; }
.icon-badge--terra { background: #f7dccb; color: var(--terra-dark); }

/* ---------- 3 Schritte ---------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 20px; counter-reset: step; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.steps li {
  counter-increment: step; position: relative; margin: 0;
  background: var(--paper); color: var(--ink); border-radius: var(--radius); padding: 30px 26px 26px;
}
.steps li::before {
  content: counter(step); display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
  background: var(--terra); color: #fff; font: 800 1.35rem/1 var(--head); margin-bottom: 16px;
}
.steps h3 { color: var(--green-800); }
.steps p { margin: 0; }

/* ---------- Timeline-Checkliste ---------- */
.timeline { list-style: none; margin: 0 auto; padding: 0; max-width: 820px; position: relative; }
.timeline::before { content: ""; position: absolute; left: 23px; top: 8px; bottom: 8px; width: 3px; background: var(--sand); border-radius: 3px; }
.timeline > li { position: relative; padding-left: 70px; margin: 0 0 30px; }
.timeline > li:last-child { margin-bottom: 0; }
.timeline .when {
  position: absolute; left: 0; top: 0; width: 48px; height: 48px; border-radius: 50%;
  background: var(--green-800); color: var(--paper); display: grid; place-items: center;
}
.timeline .when .ico { width: 24px; height: 24px; }
.timeline h3 { margin-bottom: .35em; padding-top: 8px; }
.timeline .tag { display: inline-block; font: 700 .78rem/1 var(--head); letter-spacing: .08em; text-transform: uppercase; background: #f7dccb; color: var(--terra-dark); padding: .45em .8em; border-radius: 999px; margin-bottom: 8px; }
.timeline ul { margin-bottom: 0; }
.checks { list-style: none; padding: 0; }
.checks li { position: relative; padding-left: 30px; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .42em; width: 18px; height: 18px; border-radius: 5px;
  border: 2px solid var(--green-600); background: var(--white);
}
.checks li::after { content: ""; position: absolute; left: 6px; top: .62em; width: 6px; height: 10px; border: solid var(--green-700); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }

/* ---------- Bezirke-Tags ---------- */
.bezirke { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr)); list-style: none; padding: 0; margin: 0; }
.bezirke li { margin: 0; background: var(--white); color: var(--ink); border-radius: var(--radius); padding: 18px 20px; border: 1px solid var(--line); }
.bezirke strong { display: flex; align-items: center; gap: 8px; font: 800 1.08rem/1.2 var(--head); color: var(--green-800); margin-bottom: 4px; }
.bezirke strong::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--terra); flex: 0 0 auto; }
.bezirke span { font-size: .95rem; color: var(--ink-soft); line-height: 1.5; display: block; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0 0 1em; }
.pills li { margin: 0; background: var(--green-100); color: var(--green-800); font: 700 .95rem/1 var(--head); padding: .65em 1em; border-radius: 999px; }
.section--green .pills li { background: #fffaf0; color: var(--green-800); }

/* ---------- Tabellen ---------- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); border: 1px solid var(--line); background: var(--white); margin: 0 0 1.2em; box-shadow: var(--shadow); }
table { border-collapse: collapse; width: 100%; min-width: 520px; font-size: .98rem; color: var(--ink); }
caption { text-align: left; padding: 14px 18px 0; font: 700 1rem/1.3 var(--head); color: var(--green-800); }
th, td { text-align: left; padding: 12px 18px; border-bottom: 1px solid var(--paper-2); vertical-align: top; }
thead th { background: var(--green-800); color: var(--paper); font: 700 .92rem/1.3 var(--head); white-space: nowrap; }
tbody tr:nth-child(even) { background: #fbf7ef; }
tbody tr:last-child td, tbody tr:last-child th { border-bottom: 0; }
td.num { white-space: nowrap; font-variant-numeric: tabular-nums; }
.note { font-size: .92rem; color: var(--ink-soft); }
.section--green .note { color: #e3d8c4; }

/* ---------- Info-Boxen ---------- */
.info {
  display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start;
  background: var(--green-100); color: var(--ink); border-left: 6px solid var(--green-700);
  border-radius: var(--radius-sm); padding: 20px 22px; margin: 1.4em 0;
}
.info .ico { color: var(--green-700); width: 26px; height: 26px; margin-top: 2px; }
.info p:last-child { margin-bottom: 0; }
.info--terra { background: #fbe7da; border-left-color: var(--terra); }
.info--terra .ico { color: var(--terra-dark); }
.info .src { display: block; font-size: .88rem; color: var(--ink-soft); margin-top: 6px; }
.section--green .info { color: var(--ink); }
.section--green .info a { color: var(--terra-dark); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: var(--white); color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius); }
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 56px 18px 22px; position: relative;
  font: 700 1.05rem/1.4 var(--head); color: var(--green-800);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 50%; background: var(--terra); color: #fff;
  display: grid; place-items: center; font: 700 1.2rem/1 var(--head);
}
.faq details[open] summary::after { content: "–"; }
.faq-a { padding: 0 22px 18px; }
.faq-a p { margin: 0; }
.faq a { color: var(--terra-dark); }

/* ---------- Quellen ---------- */
.sources { font-size: .95rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 24px 24px 44px; color: var(--ink); overflow-wrap: anywhere; }
.sources li { margin-bottom: .5em; }

/* ---------- Pro/Contra ---------- */
.compare { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.compare .card { border-top: 6px solid var(--green-700); }
.compare .card:nth-child(2) { border-top-color: var(--terra); }

/* ---------- CTA-Band & Footer ---------- */
.cta-band { background: var(--terra); color: #fff; padding-block: 44px; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band-title { font: 800 clamp(1.35rem, 3vw, 1.8rem)/1.2 var(--head); margin: 0 0 .3em; color: #fff; }
.cta-band p { margin: 0; color: #fff; }
.cta-band .btn--primary { background: var(--green-900); box-shadow: 0 4px 0 #0a1710; }
.cta-band .btn--primary:hover { background: var(--green-800); }
.inline-cta { text-align: center; margin-top: 36px; }

.site-footer { background: var(--green-900); color: #e3d8c4; padding-block: 56px 28px; font-size: .98rem; }
.footer-grid { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }
.footer-brand p { margin-top: 14px; }
.brand--footer, .brand--footer:hover { color: #fffaf0; }
.brand--footer .logo-mark { border-radius: 50%; box-shadow: 0 0 0 2px rgba(247, 241, 230, .55); }
.footer-title { font: 800 .85rem/1 var(--head); letter-spacing: .12em; text-transform: uppercase; color: var(--terra-light); margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer a { color: #fffaf0; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(247, 241, 230, .18); margin-top: 40px; padding-top: 20px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; font-size: .9rem; }
.footer-bottom p { margin: 0; }

/* ---------- Rechtsseiten ---------- */
.legal { padding-block: 56px 80px; }
.legal h2 { font-size: 1.45rem; margin-top: 1.6em; }

@media (max-width: 400px) {
  :root { --gutter: 16px; }
  .card { padding: 22px 18px; }
  .btn--lg { padding: .95em 1.3em; font-size: 1.02rem; }
  .timeline > li { padding-left: 60px; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; scroll-behavior: auto !important; } }

/* ---------- Fotos (WebP) ---------- */
img.media { display: block; height: auto; object-fit: cover; background: var(--green-600); }
