:root {
  color-scheme: light;
  --ink: #0f1b22;
  --muted: #5b6a73;
  --accent: #e58f2a;
  --accent-soft: #f6e2c7;
  --surface: #f7f4ef;
  --panel: #ffffff;
  --shadow: 0 18px 45px rgba(15, 27, 34, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fbfaf7;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--ink);
  text-decoration: none;
}

.page {
  position: relative;
  overflow-x: hidden;
}

.nav-shell {
  padding: 28px 6vw 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.75rem;
  color: var(--muted);
  max-width: 240px;
  text-align: right;
}

.section {
  padding: 64px 6vw;
}

.section-tight {
  padding: 40px 6vw;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.hero-text {
  flex: 1 1 360px;
  min-width: 280px;
}

.hero-media {
  flex: 1 1 380px;
  min-width: 280px;
  background: #dfe6ea;
  border-radius: 28px;
  padding: 14px;
  box-shadow: var(--shadow);
  transform: translateY(16px);
}

.hero-media img {
  width: 100%;
  border-radius: 20px;
}

.eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.lead {
  font-size: 1.2rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
}

.button.secondary {
  background: #1c2d35;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  min-width: 220px;
  background: var(--panel);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-media {
  background: #d7e2e8;
  border-radius: 16px;
  overflow: hidden;
}

.media-block {
  background: #dfe6ea;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.price {
  font-weight: 700;
  font-size: 1.05rem;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.panel {
  background: var(--panel);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.offset-left {
  margin-left: -4vw;
}

.offset-right {
  margin-right: -4vw;
  text-align: right;
}

.bg-stuttgart {
  background: #e8edf0;
  background-image: url("https://images.unsplash.com/photo-1611611158676-ab7d7f923af0?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-stuttgart .panel {
  background: rgba(15, 27, 34, 0.78);
  color: #fff;
}

.form-panel {
  background: var(--accent-soft);
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c8cfd4;
  font-size: 1rem;
}

footer {
  padding: 48px 6vw 80px;
  background: #121b21;
  color: #e7eef2;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid a {
  color: #e7eef2;
}

.footer-note {
  font-size: 0.85rem;
  color: #b7c1c8;
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 16px;
  max-width: 360px;
  z-index: 25;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.legal-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  background: #1c2d35;
  color: #fff;
  border-radius: 999px;
  font-size: 0.85rem;
}

.muted {
  color: var(--muted);
}

.table {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  background: var(--panel);
  padding: 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.table-row strong {
  min-width: 220px;
}
