:root {
  color-scheme: light;
  --bg: #f7f4ef;
  --ink: #1f252b;
  --muted: #5f6b76;
  --accent: #c46b2b;
  --accent-dark: #a9561f;
  --card: #ffffff;
  --soft: #ebe4da;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  gap: 20px;
  background: var(--bg);
}

.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-weight: 600;
  color: var(--accent-dark);
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 6vw 60px;
  color: #fefefe;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: 42px;
  margin: 0 0 18px;
}

.hero p {
  margin: 0 0 24px;
  color: #f3f3f3;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent-dark);
}

.link-cta {
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}

.section {
  padding: 70px 6vw;
}

.section h2 {
  font-size: 30px;
  margin: 0 0 16px;
}

.section p {
  margin: 0 0 16px;
  color: var(--muted);
}

.split {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 300px;
}

.split .media {
  flex: 1 1 280px;
}

.media {
  background-color: var(--soft);
  border-radius: 18px;
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.highlight {
  background: var(--soft);
  border-radius: 20px;
  padding: 28px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin: 0;
  font-size: 18px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-dark);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  background: #fff3e8;
  color: var(--accent-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.form-box {
  background: var(--card);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.form-box label {
  font-weight: 600;
  font-size: 14px;
}

.form-box input,
.form-box select {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d8d2c9;
  font-size: 15px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  display: flex;
  justify-content: center;
  padding: 12px 6vw 24px;
  background: linear-gradient(180deg, rgba(247, 244, 239, 0), rgba(247, 244, 239, 1));
}

.footer {
  padding: 50px 6vw 80px;
  background: #1f252b;
  color: #fefefe;
}

.footer a {
  color: #fefefe;
}

.footer-columns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-columns div {
  flex: 1 1 200px;
}

.disclaimer {
  margin-top: 20px;
  font-size: 13px;
  color: #cbd1d7;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 10;
}

.cookie-banner p {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1 1 120px;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #3e3e3e;
}

.bg-road {
  background-image: url("https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2f3438;
}

.bg-road .text {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  padding: 24px;
}

.page-hero {
  padding: 60px 6vw 40px;
}

.page-hero h1 {
  margin-bottom: 10px;
}

@media (max-width: 700px) {
  .hero h1 {
    font-size: 34px;
  }

  .sticky-cta {
    position: static;
    padding-top: 0;
  }
}
