:root {
  --bg: #f4f2ef;
  --ink: #1e1c18;
  --muted: #5c5a55;
  --accent: #27425e;
  --accent-soft: #e1e7ed;
  --card: #ffffff;
  --border: #d6d2cc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  filter: brightness(0.95);
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-header {
  padding: 20px 6vw 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.95rem;
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero {
  min-height: 70vh;
  color: #fff;
  position: relative;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.65));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1rem;
}

.btn.outline {
  background: transparent;
  border: 1px solid #fff;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div,
.split > figure {
  flex: 1 1 280px;
}

figure {
  margin: 0;
  background: #d9d4cc;
  border-radius: 18px;
  overflow: hidden;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.muted {
  color: var(--muted);
}

.section-bg {
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.section-bg .section-content {
  position: relative;
  z-index: 1;
}

.highlight {
  background: var(--accent-soft);
  border-radius: 20px;
  padding: 24px;
}

.form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
}

.form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
}

.footer {
  padding: 40px 6vw;
  background: #1f2327;
  color: #f5f3ef;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f5f3ef;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-columns div {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 4;
}

.sticky-cta button {
  background: #0f141a;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 6;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-actions button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-actions .secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.index-hero {
  background-image: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1400&q=80");
}

.index-city {
  background-image: url("https://images.unsplash.com/photo-1494526585095-c41746248156?w=1400&q=80");
}

.about-hero {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
}

.services-hero {
  background-image: url("https://images.unsplash.com/photo-1472214103451-9374bd1c798e?w=1400&q=80");
}

.contact-hero {
  background-image: url("https://images.unsplash.com/photo-1734942839837-a217ba8866e2?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHw0MXx8TmFqZW1pJTIwaXprdSVDNSVBMW5qbyUyMG5hbWVzdG8lMjBuYWt1cGElMjBpbiUyMG9ocmFuaSUyMHN2b2JvZG8ufHNsfDB8MHx8fDE3ODM0MzA3ODl8MA&ixlib=rb-4.1.0&q=80&w=1080");
}

.thanks-hero {
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
}

.privacy-hero {
  background-image: url("https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?w=1400&q=80");
}

.gdpr-hero {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.cookies-hero {
  background-image: url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?w=1400&q=80");
}

.terms-hero {
  background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1400&q=80");
}
