:root {
  color-scheme: light;
  --bg: #f6f3ef;
  --ink: #1f1f1f;
  --muted: #5a5a5a;
  --accent: #1a5e6f;
  --accent-soft: #cfe3e8;
  --sand: #efe7de;
  --stone: #e3ded6;
  --olive: #8d9b7b;
}

* {
  box-sizing: border-box;
}

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

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

a:hover,
button:hover {
  opacity: 0.85;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 8vw 18px;
}

.header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 999px;
  align-self: flex-start;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 0 8vw 80px;
}

section {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 12px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.hero-media {
  flex: 1 1 50%;
  background: var(--stone);
  border-radius: 28px;
  overflow: hidden;
}

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

.hero-content {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 24px 0;
}

.tagline {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

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

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.offset-left {
  justify-content: flex-start;
}

.offset-right {
  justify-content: flex-end;
}

.text-block {
  flex: 1 1 320px;
  max-width: 520px;
}

.media-block {
  flex: 1 1 280px;
  background: var(--stone);
  border-radius: 22px;
  overflow: hidden;
}

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

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

.card {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.card-image {
  background: var(--accent-soft);
  border-radius: 14px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.section-bg-road {
  background-image: url("https://images.unsplash.com/photo-1678653300286-94e7cce4d826?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 40px;
  color: #fff;
}

.section-bg-road .btn {
  background: #fff;
  color: var(--accent);
}

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

.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--olive);
  margin-top: 7px;
}

.form-wrap {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  flex: 1 1 340px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d3d3d3;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

textarea {
  min-height: 120px;
}

.footer {
  padding: 40px 8vw 80px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 820px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  z-index: 10;
}

.sticky-cta span {
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

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

.legal-page {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 12px 0 40px;
}

.hero-slim {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  background: #fff;
  border-radius: 16px;
}

.service-item .price {
  font-weight: 700;
  color: var(--accent);
}

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

.icon-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.icon-card svg {
  width: 36px;
  height: 36px;
  fill: var(--accent);
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .sticky-cta {
    left: 24px;
    right: 24px;
    justify-content: space-between;
  }
}
