* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1b1b;
  --muted: #5b5b5b;
  --stone: #f4f2ee;
  --fog: #f9f9f7;
  --clay: #e2ddd5;
  --accent: #2f5b4f;
  --accent-soft: #d9ece6;
  --warn: #d4674c;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--fog);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px 80px;
}

.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 10px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--clay);
  padding: 6px 12px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.95rem;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--accent);
}

.hero {
  display: flex;
  gap: 26px;
  align-items: stretch;
  margin: 30px 0 60px;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 34px;
  background: var(--stone);
  border-radius: 18px;
}

.hero-image {
  flex: 1;
  min-height: 360px;
  border-radius: 20px;
  overflow: hidden;
  background: #cfd4cf;
  position: relative;
  top: 18px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.2;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn:hover,
.btn:focus {
  background: #244a40;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--accent-soft);
}

.split-block {
  display: flex;
  gap: 28px;
  align-items: center;
  margin: 60px 0;
}

.split-block.reverse {
  flex-direction: row-reverse;
}

.split-media {
  flex: 1;
  min-height: 280px;
  border-radius: 18px;
  overflow: hidden;
  background: #d8d0c5;
}

.split-content {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.offset-panel {
  display: flex;
  gap: 24px;
  align-items: stretch;
  background: var(--clay);
  padding: 30px;
  border-radius: 20px;
  margin: 50px 0 30px;
}

.offset-panel .note {
  flex: 0.85;
  font-size: 1.05rem;
}

.offset-panel .mini-image {
  flex: 1.15;
  min-height: 220px;
  border-radius: 16px;
  overflow: hidden;
  background: #c8c1b6;
  position: relative;
  top: -24px;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 50px 0;
}

.service-card {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  align-items: center;
}

.service-card .thumb {
  flex: 0 0 150px;
  height: 120px;
  border-radius: 14px;
  overflow: hidden;
  background: #d5dcd5;
}

.service-card .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent);
}

.quote-row {
  display: flex;
  gap: 22px;
  margin: 60px 0;
}

.quote {
  flex: 1;
  background: var(--stone);
  padding: 24px;
  border-radius: 16px;
}

.form-panel {
  display: flex;
  gap: 26px;
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  margin: 60px 0;
}

.form-panel form {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d1d1d1;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-side {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #1c4e40;
  font-size: 0.9rem;
}

.footer {
  margin-top: 70px;
  padding-top: 30px;
  border-top: 1px solid #dadada;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 24px;
  background: var(--warn);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  z-index: 10;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: #c25b42;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 320px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1;
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--muted);
}

.two-column {
  display: flex;
  gap: 26px;
  margin: 50px 0;
}

.two-column .col {
  flex: 1;
  background: var(--stone);
  padding: 24px;
  border-radius: 16px;
}

.plain-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.highlight {
  background: var(--accent-soft);
  padding: 16px;
  border-radius: 14px;
}

.mini-cta {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  align-self: flex-start;
}

.mini-cta:hover,
.mini-cta:focus {
  color: #143028;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 40px 0;
}

.legal h2 {
  font-size: 1.4rem;
}

@media (max-width: 960px) {
  .hero,
  .split-block,
  .offset-panel,
  .quote-row,
  .form-panel,
  .two-column {
    flex-direction: column;
  }

  .hero-image {
    top: 0;
  }

  .offset-panel .mini-image {
    top: 0;
  }

  .service-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-card .thumb {
    width: 100%;
  }
}
