* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1a18;
  --muted: #5c5a55;
  --sand: #f4f1ec;
  --forest: #2c4a3b;
  --moss: #6b8f7a;
  --stone: #c9c2b8;
  --accent: #d6a95a;
  --shadow: 0 18px 40px rgba(27, 26, 24, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fdfbf7;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  padding: 28px 0 10px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--stone);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: stretch;
  margin: 40px 0 80px;
  position: relative;
}

.hero-content {
  flex: 1 1 55%;
  padding: 40px;
  background: var(--sand);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
}

.hero-content h1 {
  font-size: 44px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 18px;
  color: var(--muted);
}

.hero-media {
  flex: 1 1 45%;
  margin-top: 40px;
  position: relative;
}

.media {
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.offset-banner {
  position: absolute;
  right: -20px;
  top: -20px;
  background: var(--forest);
  color: #fff;
  padding: 14px 18px;
  font-size: 13px;
  letter-spacing: 0.4px;
}

.section {
  margin-bottom: 80px;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 55%;
}

.split .media {
  flex: 1 1 45%;
  min-height: 260px;
}

.section-title {
  font-size: 28px;
  margin-bottom: 12px;
}

.note {
  color: var(--muted);
}

.callout {
  padding: 26px;
  background: #fff;
  border-left: 6px solid var(--accent);
  box-shadow: var(--shadow);
  margin-top: 20px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 calc(50% - 18px);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-width: 260px;
}

.service-card .content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--forest);
}

.cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.primary {
  background: var(--forest);
  color: #fff;
}

.btn.secondary {
  background: #fff;
  color: var(--forest);
  border: 1px solid var(--forest);
}

.inline-link {
  color: var(--forest);
  text-decoration: underline;
}

.layered {
  background-image: url("https://images.unsplash.com/photo-1472214103451-9374bd1c798e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 26px;
  padding: 50px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.layered::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 26, 24, 0.45);
}

.layered .layered-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.form-panel {
  display: flex;
  gap: 26px;
  align-items: stretch;
}

.form-card {
  flex: 1 1 60%;
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-side {
  flex: 1 1 40%;
  background: var(--sand);
  padding: 22px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  font-size: 15px;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.testimonials {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.testimonial {
  flex: 1 1 280px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.disclaimer {
  font-size: 13px;
  color: var(--muted);
  padding: 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--stone);
  margin-top: 80px;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 360px;
  z-index: 120;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 40px 0;
}

.page-hero h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

.legal {
  background: var(--sand);
  padding: 28px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .form-panel {
    flex-direction: column;
  }

  .hero-media {
    margin-top: 0;
  }

  .service-card {
    flex: 1 1 100%;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
