* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1c1a;
  --muted: #5c5b57;
  --sand: #f3efe6;
  --stone: #ded7c9;
  --accent: #2f4f4f;
  --accent-soft: #e1ebe7;
  --accent-ink: #0f2b2b;
  --white: #ffffff;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 26px 0 10px;
  gap: 20px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sand);
}

.ad-label {
  font-size: 12px;
  color: var(--accent-ink);
  background: var(--accent-soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  background-image: linear-gradient(110deg, rgba(15, 26, 26, 0.7), rgba(15, 26, 26, 0.2)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
  border-radius: 28px;
  padding: 70px 8%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 54px);
  max-width: 640px;
}

.hero p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.85);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  border: none;
  cursor: pointer;
}

.btn-light {
  background: var(--white);
  color: var(--accent-ink);
}

.section {
  padding: 70px 0;
}

.section-tight {
  padding: 40px 0 60px;
}

.asym-row {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 320px;
}

.asym-text h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.asym-text p {
  color: var(--muted);
  margin-bottom: 14px;
}

.asym-card {
  flex: 1 1 320px;
  background: var(--sand);
  padding: 30px;
  border-radius: 24px;
  margin-top: -40px;
}

.asym-card.offset-right {
  margin-left: 40px;
}

.asym-card.offset-left {
  margin-right: 40px;
}

.image-frame {
  background: var(--stone);
  border-radius: 22px;
  overflow: hidden;
  flex: 1 1 320px;
  min-height: 240px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.service-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card h3 {
  font-size: 20px;
}

.price {
  font-weight: 700;
  color: var(--accent-ink);
}

.quote {
  background: var(--accent-soft);
  padding: 26px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote span {
  font-weight: 700;
}

.form-wrap {
  background: var(--sand);
  padding: 34px;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  background: var(--white);
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  background: var(--sand);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.footer {
  padding: 40px 0 70px;
  border-top: 1px solid var(--stone);
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.footer small {
  display: block;
  margin-top: 16px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 16px;
  border-radius: 16px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  background: var(--sand);
  padding: 40px;
  border-radius: 20px;
  margin: 20px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 16px;
}

.list li {
  list-style: disc;
}

.bg-panel {
  background-image: linear-gradient(120deg, rgba(47, 79, 79, 0.1), rgba(47, 79, 79, 0.03)),
    url("https://images.unsplash.com/photo-1471879832106-c7ab9e0cee23?w=800&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 36px;
}

.bg-panel h2,
.bg-panel p {
  color: var(--accent-ink);
}

@media (max-width: 900px) {
  .asym-card {
    margin-top: 0;
  }
  .asym-card.offset-right,
  .asym-card.offset-left {
    margin: 0;
  }
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
