/* Affentransport – Editorial Business Design */

@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@600;700&family=Libre+Franklin:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --navy: #0f1f33;
  --navy-mid: #1a3048;
  --navy-light: #243d5c;
  --amber: #d35400;
  --amber-light: #e67e22;
  --amber-soft: rgba(211, 84, 0, 0.08);
  --cream: #f4f1eb;
  --white: #ffffff;
  --text: #1c2430;
  --text-muted: #5a6472;
  --border: rgba(15, 31, 51, 0.1);
  --shadow-sm: 0 1px 3px rgba(15, 31, 51, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 31, 51, 0.08);
  --shadow-lg: 0 20px 48px rgba(15, 31, 51, 0.12);
  --radius: 8px;
  --radius-lg: 14px;
  --header-h: 68px;
  --banner-h: 2.25rem;
  --transition: 0.25s ease;
  --max: 1180px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

body {
  font-family: 'Libre Franklin', system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.skip-link {
  position: absolute; top: -100%; left: 1rem;
  padding: 0.75rem 1.25rem; background: var(--navy); color: white;
  font-weight: 600; z-index: 9999; border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

/* ── Top Bar ── */
.top-banner {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 0.55rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
}
.top-banner a {
  color: var(--amber-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 0.35rem;
}
.top-banner a:hover { color: white; }

/* ── Header ── */
.header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }

.nav {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 1.25rem;
  height: var(--header-h);
}

.logo {
  display: flex; align-items: center; gap: 0.65rem;
  font-family: 'Bitter', Georgia, serif;
  font-weight: 700; font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.logo img, .logo .logo-icon-img { height: 36px; width: auto; }
.logo-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: white;
  font-size: 0.7rem; font-weight: 700;
  border-radius: 6px;
}

.nav-links {
  display: none; list-style: none; align-items: center; gap: 0.1rem;
}
.nav-links a, .dropdown-trigger {
  display: flex; align-items: center;
  padding: 0.45rem 0.75rem;
  color: var(--text-muted);
  font-weight: 500; font-size: 0.875rem;
  border-radius: 6px;
  border: none; background: transparent;
  font-family: inherit; cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .dropdown-trigger:hover,
.nav-links a[aria-current="page"] {
  color: var(--navy); background: rgba(15,31,51,0.05);
}

.nav-cta {
  margin-left: 0.35rem;
  padding: 0.55rem 1.1rem !important;
  background: var(--amber) !important;
  color: white !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--amber-light) !important; color: white !important; }

.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: transparent; border: none; cursor: pointer;
}
.nav-toggle-bar {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: 0.3s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links.is-open {
  display: flex; position: absolute; top: 100%; left: 0; right: 0;
  flex-direction: column; padding: 1rem 1.25rem 1.25rem;
  background: white; border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.dropdown-menu { display: none; list-style: none; padding-left: 0.5rem; }
.dropdown.is-open .dropdown-menu { display: block; }
.dropdown-menu a { color: var(--text); padding: 0.55rem 0.85rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.5rem; font-weight: 600; font-size: 0.9rem;
  border-radius: 6px; border: none; cursor: pointer;
  font-family: inherit; transition: var(--transition);
}
.btn-primary {
  background: var(--amber);
  color: white;
  box-shadow: 0 4px 20px rgba(211, 84, 0, 0.35);
}
.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(211, 84, 0, 0.4);
}
.btn-secondary { background: white; color: var(--navy); }
.btn-secondary:hover { background: var(--cream); }
.btn-ghost {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: white; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  min-height: min(92dvh, 900px);
  display: grid;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 45%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(10, 20, 34, 0.97) 0%,
      rgba(10, 20, 34, 0.92) 38%,
      rgba(10, 20, 34, 0.55) 58%,
      rgba(10, 20, 34, 0.15) 78%,
      transparent 100%);
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: inherit;
  width: 100%;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5.5rem 1.25rem 3rem;
  width: 100%;
  display: grid;
  gap: 2rem;
  align-items: end;
}

.hero-content {
  max-width: 34rem;
}

.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--amber-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(230, 126, 34, 0.35);
}

.hero h1 {
  font-family: 'Bitter', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hero-highlight {
  color: var(--amber-light);
  font-weight: 700;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 30rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-facts {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 34rem;
  padding: 0;
  margin: 0;
}
.hero-facts li {
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}
.hero-facts strong {
  display: block;
  font-family: 'Bitter', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}
.hero-facts span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
}

/* Homepage: Header über Hero */
.page-home .top-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 302;
  min-height: var(--banner-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 20, 34, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.28s ease, opacity 0.28s ease;
}
.page-home.is-scrolled .top-banner {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.page-home .header {
  position: fixed;
  top: var(--banner-h);
  left: 0;
  right: 0;
  z-index: 301;
  background: transparent;
  border-bottom: none;
  transition: top 0.28s ease, background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.page-home .header.is-scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.page-home .hero {
  padding-top: calc(var(--banner-h) + var(--header-h));
}
.page-home .header:not(.is-scrolled) .logo {
  color: white;
}
.page-home .header:not(.is-scrolled) .logo img {
  filter: brightness(0) invert(1);
}
.page-home .header:not(.is-scrolled) .nav-links a,
.page-home .header:not(.is-scrolled) .dropdown-trigger {
  color: rgba(255, 255, 255, 0.82);
}
.page-home .header:not(.is-scrolled) .nav-links a:hover,
.page-home .header:not(.is-scrolled) .dropdown-trigger:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}
.page-home .header:not(.is-scrolled) .nav-toggle-bar {
  background: white;
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem;
}
.trust-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem 1.5rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; font-weight: 500;
  color: var(--text-muted);
}
.trust-icon {
  color: var(--amber);
  font-weight: 700;
  font-size: 0.75rem;
}

/* ── Sections ── */
.section {
  max-width: var(--max); margin: 0 auto;
  padding: 4rem 1.25rem;
}
.section-label {
  display: block;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 0.5rem;
}
.section h2 {
  font-family: 'Bitter', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.section-intro {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 1rem;
  margin-bottom: 2rem;
}
.section-header { margin-bottom: 2.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-intro { margin-left: auto; margin-right: auto; }

/* ── Why Section ── */
.why-section { background: var(--white); max-width: none; }
.why-section .section { padding-top: 4rem; padding-bottom: 4rem; }
.why-grid {
  display: grid; gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-item {
  padding: 1.75rem;
  background: var(--white);
}
.why-num { display: none; }
.why-item h3 {
  font-family: 'Bitter', Georgia, serif;
  font-size: 1rem; font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.why-item p { font-size: 0.875rem; color: var(--text-muted); }

/* ── Umzugstypen ── */
.umzugstypen { max-width: none; }
.umzugstypen .section { padding-top: 4rem; padding-bottom: 4rem; }
.umzugstypen-grid { display: grid; gap: 1rem; }
.umzugstypen-card {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.umzugstypen-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--amber-soft);
  border-radius: 8px;
  margin-bottom: 1rem;
  color: var(--amber);
}
.umzugstypen-icon svg { width: 20px; height: 20px; }
.umzugstypen-card h3 {
  font-family: 'Bitter', Georgia, serif;
  font-size: 1.05rem; font-weight: 600;
  margin-bottom: 0.4rem; color: var(--navy);
}
.umzugstypen-card p { font-size: 0.875rem; color: var(--text-muted); }

/* ── Services ── */
.services { max-width: none; background: var(--white); }
.services .section { padding-top: 4rem; padding-bottom: 4rem; }
.services-grid { display: grid; gap: 1.25rem; }
.service-card {
  display: grid;
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.service-card-image { aspect-ratio: 16/10; overflow: hidden; }
.service-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-image img { transform: scale(1.03); }
.service-card-body { padding: 1.5rem; }
.service-card-tag {
  display: inline-block;
  font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.service-card-body h3 {
  font-family: 'Bitter', Georgia, serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--navy); margin-bottom: 0.5rem;
}
.service-card-body p { font-size: 0.875rem; color: var(--text-muted); }

/* ── Fleet ── */
.fleet-showcase { max-width: none; position: relative; overflow: hidden; }
.fleet-showcase img { width: 100%; aspect-ratio: 21/8; object-fit: cover; }
.fleet-showcase-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(15,31,51,0.88) 0%, transparent 55%);
  display: flex; align-items: center;
  padding: 2rem 1.25rem;
}
.fleet-showcase-text { max-width: var(--max); margin: 0 auto; width: 100%; }
.fleet-showcase-text h2 {
  font-family: 'Bitter', Georgia, serif;
  color: white;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  margin-bottom: 0.5rem;
}
.fleet-showcase-text p { color: rgba(255,255,255,0.7); max-width: 400px; font-size: 0.95rem; }

/* ── Routes ── */
.routes-featured { max-width: none; }
.routes-featured .section { padding-top: 4rem; padding-bottom: 4rem; }
.routes-grid { display: grid; gap: 0.65rem; }
.route-card {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.35rem 0.65rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.route-card:hover { border-color: var(--amber); background: var(--amber-soft); }
.route-card-highlight {
  background: var(--navy); border-color: var(--navy); color: white;
}
.route-card-highlight:hover { background: var(--navy-mid); border-color: var(--navy-mid); }
.route-arrow { display: none; }
.route-from, .route-to { font-weight: 600; font-size: 0.95rem; }
.route-to { color: var(--text-muted); }
.route-card-highlight .route-to { color: rgba(255,255,255,0.65); }
.route-to::before { content: '→'; margin-right: 0.5rem; color: var(--amber); font-weight: 400; }
.route-card-highlight .route-to::before { color: var(--amber-light); }
.route-badge {
  font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  background: var(--amber-soft);
  color: var(--amber);
  border-radius: 4px;
}
.route-card-highlight .route-badge { background: rgba(255,255,255,0.12); color: var(--amber-light); }

/* ── Process ── */
.process { max-width: none; background: var(--navy); color: white; }
.process .section { padding-top: 4rem; padding-bottom: 4rem; }
.process .section-label { color: var(--amber-light); }
.process h2 { color: white; }
.process-grid { display: grid; gap: 1rem; }
.process-step {
  padding: 1.5rem;
  border-left: 3px solid var(--amber);
  background: rgba(255,255,255,0.03);
}
.process-num {
  font-size: 0.7rem; font-weight: 700;
  color: var(--amber-light);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.process-step h3 {
  font-family: 'Bitter', Georgia, serif;
  font-size: 1rem; font-weight: 600;
  margin-bottom: 0.35rem;
}
.process-step p { font-size: 0.875rem; color: rgba(255,255,255,0.65); }

/* ── About Split ── */
.about-split { max-width: none; background: var(--cream); }
.about-split .section {
  display: grid; gap: 2.5rem; align-items: center;
  padding-top: 4rem; padding-bottom: 4rem;
}
.about-split-image { border-radius: var(--radius-lg); overflow: hidden; }
.about-split-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-split-content h2 { text-align: left; margin-bottom: 1rem; }
.about-split-content p { color: var(--text-muted); margin-bottom: 1.25rem; }
.about-features { display: grid; gap: 0.65rem; margin: 1.5rem 0; }
.about-feature {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.875rem;
}
.about-feature-icon { color: var(--amber); font-weight: 700; flex-shrink: 0; }

/* ── Cities ── */
.cities-preview { max-width: none; background: var(--white); }
.cities-preview .section { padding-top: 4rem; padding-bottom: 4rem; }
.city-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem;
}
.city-card {
  padding: 0.75rem 1rem;
  background: var(--cream);
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 500; font-size: 0.875rem;
  color: var(--navy);
  transition: var(--transition);
  text-align: center;
}
.city-card:hover { background: var(--navy); color: white; }
.city-card-badge { display: none; }
.city-card-label { display: block; }
.city-card-highlight { background: var(--navy); color: white; }

/* ── CTA Banner ── */
.cta-banner { max-width: none; background: var(--navy); }
.cta-banner .section { padding: 3.5rem 1.25rem; text-align: center; }
.cta-content { max-width: 560px; margin: 0 auto; }
.cta-content h2 {
  color: white;
  font-family: 'Bitter', Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  margin-bottom: 0.75rem;
}
.cta-content p { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }

/* ── Testimonials ── */
.testimonials { max-width: none; }
.testimonials .section { padding-top: 4rem; padding-bottom: 4rem; }
.testimonial-grid { display: grid; gap: 1rem; }
.testimonial-card {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-left: 3px solid var(--amber);
}
.testimonial-stars { display: none; }
.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 1rem;
  font-style: italic;
}
.testimonial-card cite {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}
.testimonial-card cite span {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  margin-top: 0.1rem;
}

/* ── FAQ Snippet ── */
.faq-snippet { max-width: none; background: var(--white); }
.faq-snippet .section { padding-top: 4rem; padding-bottom: 4rem; }
.faq-snippet-grid { display: grid; gap: 0.65rem; }
.faq-snippet-item {
  padding: 1.25rem 1.5rem;
  background: var(--cream);
  border-radius: var(--radius);
}
.faq-snippet-item h3 {
  font-family: 'Bitter', Georgia, serif;
  font-size: 0.95rem; font-weight: 600;
  color: var(--navy); margin-bottom: 0.35rem;
}
.faq-snippet-item p { font-size: 0.875rem; color: var(--text-muted); }

/* ── Preise & Contact ── */
.preise-info .preise-content { text-align: center; max-width: 560px; margin: 0 auto; }
.preise-content p { color: var(--text-muted); margin-bottom: 1.25rem; }

.contact-direct-grid {
  display: grid; gap: 0.75rem;
  max-width: 640px; margin: 0 auto;
}
.contact-direct-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-direct-item:hover { border-color: var(--amber); }
.contact-direct-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy);
  color: white;
  border-radius: 8px;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-direct-label { font-weight: 600; color: var(--navy); display: block; font-size: 0.95rem; }
.contact-direct-desc { font-size: 0.8rem; color: var(--text-muted); }

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 3rem 1.25rem 1.5rem;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top {
  display: grid; gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: 'Bitter', Georgia, serif;
  font-weight: 700; font-size: 1.2rem;
  color: white;
  display: block; margin-bottom: 0.5rem;
}
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.45); max-width: 260px; }
.footer-grid { display: grid; gap: 1.5rem; }
.footer-col h4 {
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: white; margin-bottom: 0.75rem;
}
.footer-col a {
  display: block; padding: 0.2rem 0;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--amber-light); }
.footer-bottom {
  display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-eu { color: rgba(255,255,255,0.3); }

/* ── Subpages ── */
.page-content { max-width: 720px; margin: 0 auto; padding: 0 0.25rem; }
.page-content h2 {
  font-family: 'Bitter', Georgia, serif;
  text-align: left; margin-top: 2rem; color: var(--navy);
  font-size: 1.25rem;
}
.page-content p, .page-content ul { margin-bottom: 1rem; color: var(--text-muted); font-size: 0.95rem; }
.page-content ul { padding-left: 1.25rem; }

.hero-small {
  min-height: auto; padding: 3rem 1.25rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: white;
}
.hero-small .hero-bg { display: none; }
.hero-small h1 {
  font-family: 'Bitter', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  text-align: center;
}
.hero-small .hero-sub { text-align: center; margin: 0.5rem auto 0; color: rgba(255,255,255,0.7); }

.contact-form {
  max-width: 560px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0.85rem;
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 0.85rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit; font-size: 0.95rem;
  background: var(--white);
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none; border-color: var(--amber);
}
.contact-form textarea { min-height: 120px; resize: vertical; }

.faq-item {
  padding: 1.25rem; margin-bottom: 0.65rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.faq-item h3 { margin-bottom: 0.4rem; color: var(--navy); font-size: 1rem; }

.legal-content {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  padding: 2rem 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.legal-content p { color: var(--text); }
.legal-content h2 {
  font-size: 1.15rem;
  margin-top: 2rem;
  color: var(--navy);
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content strong { color: var(--navy); }
.legal-content a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover { color: var(--amber-light); }
.legal-content h1 { display: none; }

.section-cta { text-align: center; margin-top: 2rem; }

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.dropdown-menu-wide { max-height: 70vh; overflow-y: auto; }

/* ── Responsive ── */
@media (min-width: 640px) {
  .nav-toggle { display: none; }
  .nav-links {
    display: flex; flex-direction: row; position: static;
    padding: 0; background: transparent; border: none; box-shadow: none;
  }
  .dropdown { position: relative; }
  .dropdown-menu {
    position: absolute; top: calc(100% + 6px); left: 0;
    min-width: 200px;
    background: white; border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    padding: 0.4rem;
  }
  .dropdown-menu-wide { min-width: 260px; }
  .dropdown-menu a { border-radius: 4px; }
  .dropdown-menu a:hover { background: var(--cream); }
  .trust-inner { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .umzugstypen-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-snippet-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-direct-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 2fr; }
  .city-grid { grid-template-columns: repeat(4, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .umzugstypen-grid { grid-template-columns: repeat(4, 1fr); }
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
  .about-split .section { grid-template-columns: 1fr 1fr; }
  .city-grid { grid-template-columns: repeat(7, 1fr); }
  .hero-inner {
    padding: 7rem 1.25rem 4rem;
    grid-template-columns: 1fr auto;
    align-items: end;
  }
  .hero-facts {
    max-width: 280px;
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .section { padding: 5rem 1.25rem; }
}

@media (max-width: 639px) {
  .hero-bg::after {
    background:
      linear-gradient(180deg,
        rgba(10, 20, 34, 0.88) 0%,
        rgba(10, 20, 34, 0.94) 55%,
        rgba(10, 20, 34, 0.7) 100%);
  }
  .hero-bg img {
    object-position: 60% center;
  }
  .hero-facts {
    max-width: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
