* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2a1e;
  --muted: #5b6b57;
  --sand: #f3efe8;
  --clay: #d8c7b2;
  --stone: #c9d0cc;
  --pine: #2b4a3b;
  --fog: #eef2ee;
  --accent: #4c7a5a;
  --shadow: rgba(16, 24, 20, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.nav-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 12px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand h1,
.brand h2 {
  font-size: 24px;
  letter-spacing: 1px;
}

.brand span {
  font-size: 13px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}

.nav-links a,
.nav-label {
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--fog);
}

.nav-label {
  background: var(--clay);
  color: var(--pine);
}

.hero {
  display: flex;
  gap: 24px;
  align-items: stretch;
  margin-top: 24px;
}

.hero-main {
  flex: 1.4;
  background: var(--fog);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 18px 40px var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-main h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.hero-main p {
  max-width: 520px;
  color: var(--muted);
}

.hero-aside {
  flex: 0.9;
  background: var(--stone);
  padding: 24px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  top: 32px;
}

.image-card {
  border-radius: 20px;
  overflow: hidden;
  background: #d2dbd5;
  height: 220px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  margin: 64px 0;
}

.section-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.split-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.offset-block {
  flex: 1;
  background: var(--fog);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 12px 32px var(--shadow);
}

.offset-block.secondary {
  background: var(--clay);
  position: relative;
  top: 18px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px var(--shadow);
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--pine);
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 16px 32px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cbd3c7;
  font-size: 15px;
}

.footer {
  margin-top: 72px;
  padding: 32px 0 48px;
  border-top: 1px solid #d5ddd4;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--pine);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 10px 24px var(--shadow);
  z-index: 50;
}

.highlight-row {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--stone);
  padding: 24px;
  border-radius: 24px;
}

.highlight-row .image-card {
  flex: 1;
  height: 240px;
}

.highlight-row .text {
  flex: 1;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-18 {
  margin-top: 18px;
}

.mt-20 {
  margin-top: 20px;
}

.bg-sage {
  background: #c7d0c6;
}

.bg-forest {
  background: #d7d4c5;
}

.bg-stone {
  background: #c9d0cc;
}

.bg-clay {
  background: #d8c7b2;
}

.bg-mist {
  background: #cfd8d2;
}

.bg-sand {
  background: #d0c7be;
}

.bg-fog {
  background: #d5d9d1;
}

.img-180 {
  height: 180px;
}

.img-260 {
  height: 260px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sand);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 16px 32px var(--shadow);
  display: none;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.legal-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 14px 26px var(--shadow);
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 280px;
  background: var(--fog);
  padding: 20px;
  border-radius: 18px;
}

@media (max-width: 900px) {
  .hero,
  .split-row,
  .highlight-row {
    flex-direction: column;
  }

  .hero-aside {
    top: 0;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
