* {
  box-sizing: border-box;
}

:root {
  --ink: #101418;
  --muted: #5b6673;
  --accent: #1b2a41;
  --accent-strong: #243b5a;
  --surface: #f5f1ec;
  --sand: #ece4db;
  --champagne: #faf7f3;
  --radius: 18px;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--champagne);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 6vw;
  background: #ffffff;
  border-bottom: 1px solid #e7e2db;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px dashed #cbbfb3;
  border-radius: 999px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  padding: 58px 6vw;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1 1 340px;
  min-width: 280px;
}

.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  background: #d9d2c8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-size: clamp(2.4rem, 3vw, 3.5rem);
  margin: 0 0 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.text-link {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel.light {
  background: #ffffff;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.image-frame {
  background: #d6cec5;
  display: flex;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  margin: 0;
}

.muted {
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.split-band {
  background: var(--sand);
}

.backdrop {
  background-size: cover;
  background-position: center;
  color: #f8f5f0;
}

.backdrop-drive {
  background-image: url("https://images.unsplash.com/photo-1472214103451-9374bd1c798e?w=1400&q=80");
}

.backdrop-city {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
}

.form-wrapper {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d5cdc3;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  padding: 36px 6vw 48px;
  background: #0f141a;
  color: #f0eee9;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: inherit;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d5cec3;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
  width: calc(100% - 40px);
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-title {
  padding: 50px 6vw 0;
}

.legal {
  padding: 24px 6vw 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 22px;
  flex: 1 1 260px;
}
