:root {
  --bg: #f7f7f4;
  --ink: #1b1f23;
  --muted: #5a636b;
  --brand: #1f6f5c;
  --accent: #d9b75b;
  --panel: #ffffff;
  --soft: #eef1ee;
  --line: #d6dad6;
}

* {
  box-sizing: border-box;
}

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

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

a.cta, button.cta {
  background: var(--brand);
  color: #fff;
  padding: 12px 22px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

a.cta.secondary {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

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

.ad-label {
  padding: 4px 10px;
  border: 1px solid var(--accent);
  border-radius: 12px;
  font-size: 12px;
  color: #654c10;
  background: #fff7e0;
}

.hero {
  min-height: 70vh;
  background: linear-gradient(120deg, rgba(0,0,0,0.55), rgba(0,0,0,0.2)),
    var(--hero-image);
  background-color: #1e2b2a;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero.ev-hero {
  --hero-image: url(\"https://images.unsplash.com/photo-tmLy8bYjvJo?w=1400&q=80\");
}

.hero-inner {
  display: flex;
  align-items: center;
  min-height: 70vh;
  padding: 40px 0;
}

.hero-content {
  max-width: 520px;
}

.hero h1 {
  font-size: 38px;
  margin: 0 0 16px;
}

.hero p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.85);
}

.section {
  padding: 64px 0;
}

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

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

.split .text {
  flex: 1 1 50%;
}

.split .media {
  flex: 1 1 50%;
  background: #e8ebe7;
  border-radius: 20px;
  overflow: hidden;
}

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

.split .media .media-inner {
  height: 360px;
}

.section.bg-soft {
  background: var(--soft);
}

.section.bg-image {
  background: linear-gradient(120deg, rgba(255,255,255,0.9), rgba(255,255,255,0.75)),
    var(--section-image);
  background-color: #e4e8e2;
  background-size: cover;
  background-position: center;
}

.section.bg-parking {
  --section-image: url(\"https://images.unsplash.com/photo-CAxYDh9QV1Y?w=1400&q=80\");
}

.card-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
}

.card .card-media {
  background: #ece9e2;
  height: 180px;
}

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

.card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--brand);
}

.inline-link {
  color: var(--brand);
  text-decoration: underline;
}

.form-wrap {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input, select, textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 14px;
}

.service-select {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.service-select button {
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 14px 16px;
  background: #fff;
  cursor: pointer;
  flex: 1 1 200px;
  text-align: left;
}

.service-select button.active {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(31, 111, 92, 0.2);
}

.notice {
  background: #fffaf0;
  border: 1px solid #f1ddb0;
  padding: 14px 16px;
  border-radius: 14px;
  color: #6a5320;
}

.footer {
  padding: 48px 0 32px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer small {
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #3b2a00;
  padding: 12px 18px;
  border-radius: 24px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 360px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.12);
  z-index: 20;
}

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

.cookie-actions button {
  flex: 1 1 auto;
  border-radius: 12px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.cookie-actions button.accept {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f1f4f1;
  color: var(--muted);
  font-size: 13px;
}

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

  .hero-inner {
    min-height: auto;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
