:root {
  --ink: #1f2a33;
  --muted: #5f6d76;
  --sand: #f3f0ec;
  --fog: #f8f7f5;
  --accent: #2f6f8f;
  --accent-dark: #24556d;
  --border: #e2ded8;
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--accent-dark);
}

a.button-link {
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  background: white;
  border-right: 1px solid var(--border);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--sand);
  padding: 8px 10px;
  border-radius: 8px;
}

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

.nav a {
  text-decoration: none;
  color: var(--ink);
  padding: 6px 0;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 42px 56px;
  background: white;
  border-bottom: 1px solid var(--border);
}

.section.alt {
  background: var(--sand);
}

.hero {
  color: white;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 34, 41, 0.6);
}

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

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

.hero p {
  margin: 0 0 18px;
}

.button {
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border: 1px solid white;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--accent-dark);
  font-weight: 600;
}

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

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

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

.split .media {
  flex: 1 1 280px;
  background: #dfe4e8;
  border-radius: 14px;
  overflow: hidden;
}

.split img,
.card img,
.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

.card {
  flex: 1 1 240px;
  background: var(--fog);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

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

.highlight {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.form-wrap {
  background: var(--fog);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

label {
  font-weight: 600;
}

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

.notice {
  font-size: 13px;
  color: var(--muted);
}

.bg-city {
  background-image: url('https://images.unsplash.com/photo-1479839672679-a46483c0e7c8?w=1400&q=80');
  background-size: cover;
  background-position: center;
  color: white;
}

.bg-city .highlight {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.footer {
  padding: 32px 56px;
  background: #12191f;
  color: #e9edf0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer a {
  color: #cfe4f2;
}

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

.hero-home {
  background-image: url('https://images.unsplash.com/photo-1449844908441-8829872d2607?w=1400&q=80');
}

.hero-services {
  background-image: url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80');
}

.image-frame {
  background: #dfe4e8;
  border-radius: 16px;
  overflow: hidden;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  z-index: 12;
  display: none;
}

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

.cookie-actions button {
  flex: 1;
}

.banner-visible {
  display: block;
}

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

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .section,
  .footer {
    padding: 32px 22px;
  }

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