* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --forest: #1f3c2a;
  --moss: #3b5f45;
  --stone: #e6e2d8;
  --mist: #f6f4ef;
  --river: #2a5c6b;
  --clay: #c4a77d;
  --ink: #1c1c1c;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--stone);
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 40px;
}

.hero-content {
  flex: 1.1;
  padding: 40px 0;
}

.hero-visual {
  flex: 0.9;
  min-height: 360px;
  border-radius: 24px;
  background-color: #2f4a37;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(31, 60, 42, 0.1), rgba(31, 60, 42, 0.45));
}

.hero-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(246, 244, 239, 0.9);
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 14px;
  max-width: 220px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: var(--river);
}

.inline-cta {
  color: var(--river);
  text-decoration: underline;
}

.offset-section {
  display: flex;
  gap: 28px;
  align-items: center;
  margin: 50px 0;
}

.offset-section.reverse {
  flex-direction: row-reverse;
}

.image-frame {
  flex: 0.95;
  background: var(--stone);
  border-radius: 22px;
  overflow: hidden;
  padding: 12px;
}

.image-frame img {
  width: 100%;
  height: 320px;
  border-radius: 18px;
}

.text-block {
  flex: 1.05;
}

.layered-section {
  position: relative;
  margin: 60px 0;
  padding: 50px;
  border-radius: 28px;
  background: var(--moss);
  color: #fff;
  overflow: hidden;
}

.layered-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1470770903676-69b98201ea1c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.layered-content {
  position: relative;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.layered-content .pill {
  background: rgba(246, 244, 239, 0.2);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  display: inline-block;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
}

.service-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(31, 60, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card img {
  width: 100%;
  height: 180px;
  border-radius: 16px;
}

.price-tag {
  font-weight: 700;
  color: var(--forest);
}

.business-model {
  display: flex;
  gap: 26px;
  align-items: stretch;
  margin: 50px 0;
}

.business-model .note {
  flex: 0.9;
  background: var(--stone);
  padding: 24px;
  border-radius: 22px;
}

.business-model .detail {
  flex: 1.1;
  padding: 24px;
  border-radius: 22px;
  background: #fff;
}

.form-section {
  display: flex;
  gap: 24px;
  align-items: stretch;
  margin: 60px 0;
}

.form-panel {
  flex: 1.1;
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(31, 60, 42, 0.08);
}

.form-panel label {
  display: block;
  font-weight: 600;
  margin: 12px 0 6px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d9d4c8;
  font-family: inherit;
}

.form-message {
  margin-top: 12px;
  font-size: 14px;
  color: var(--river);
}

.form-aside {
  flex: 0.9;
  background: var(--stone);
  padding: 24px;
  border-radius: 22px;
}

.sticky-cta {
  position: sticky;
  bottom: 20px;
  margin: 60px 0 40px;
  background: #fff;
  border-radius: 999px;
  padding: 12px 20px;
  box-shadow: 0 14px 26px rgba(31, 60, 42, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer {
  margin-top: 60px;
  padding: 32px 0 50px;
  border-top: 1px solid #ddd6c7;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
}

.disclaimer {
  background: var(--stone);
  padding: 16px;
  border-radius: 16px;
}

.simple-hero {
  display: flex;
  gap: 26px;
  align-items: center;
  margin: 40px 0;
}

.simple-hero .hero-image {
  flex: 1;
  background: var(--stone);
  padding: 12px;
  border-radius: 20px;
}

.simple-hero img {
  width: 100%;
  height: 280px;
  border-radius: 16px;
}

.highlight-band {
  background: var(--clay);
  padding: 26px;
  border-radius: 24px;
  color: #2d2214;
  margin: 40px 0;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(31, 60, 42, 0.08);
}

.service-item .badge {
  background: var(--moss);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-card {
  display: flex;
  gap: 24px;
  margin: 40px 0;
}

.contact-card .card {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(31, 60, 42, 0.08);
}

.contact-banner {
  border-radius: 24px;
  background: var(--stone);
  padding: 14px;
  margin: 40px 0;
  overflow: hidden;
}

.contact-banner img {
  width: 100%;
  height: 240px;
  border-radius: 18px;
}

.legal-section {
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  margin: 30px 0;
  box-shadow: 0 12px 26px rgba(31, 60, 42, 0.08);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(31, 60, 42, 0.2);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .btn {
  flex: 1;
  padding: 10px 12px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .hero,
  .offset-section,
  .layered-content,
  .business-model,
  .form-section,
  .simple-hero,
  .contact-card {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
  }
}
