* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --forest: #1b3a2b;
  --moss: #2f5d40;
  --leaf: #4c8b5c;
  --clay: #f4efe8;
  --sun: #f9d98c;
  --stone: #f2f5f4;
  --ink: #17221c;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--stone);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 24px;
  background: var(--clay);
  width: 250px;
}

.brand {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.2s ease;
}

.nav a:hover {
  background: rgba(27, 58, 43, 0.08);
}

.sidebar-note {
  font-size: 14px;
  color: #3f4b45;
}

.sidebar-cta {
  margin-top: auto;
  background: var(--forest);
  color: #fff;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--forest);
  font-weight: 600;
}

.content {
  flex: 1;
  padding: 40px 8vw 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
}

.muted {
  color: #4c5952;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(23, 34, 28, 0.08);
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-text h1 {
  font-size: 42px;
  line-height: 1.1;
}

.hero-media {
  flex: 1 1 280px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--moss);
  color: #fff;
  font-weight: 600;
  gap: 8px;
  width: fit-content;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--moss);
  color: var(--moss);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  background: rgba(76, 139, 92, 0.12);
  border-radius: 999px;
  font-size: 13px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.split > div {
  flex: 1 1 260px;
}

.panel {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(23, 34, 28, 0.05);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(23, 34, 28, 0.08);
}

.card img {
  height: 150px;
  object-fit: cover;
}

.highlight {
  background: var(--forest);
  color: #fff;
  padding: 28px;
  border-radius: 20px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list li {
  list-style: none;
  padding: 12px 16px;
  background: rgba(244, 239, 232, 0.9);
  border-radius: 14px;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  background: #fff;
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 20px rgba(23, 34, 28, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 260px;
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ccd8d1;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: 15px;
}

.notice {
  font-size: 14px;
  color: #3b4a42;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: #47524c;
}

.footer a {
  color: #2f5d40;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 320px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(23, 34, 28, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
}

.cookie-accept {
  background: var(--moss);
  color: #fff;
}

.cookie-reject {
  background: #e5ebe7;
  color: #2a3b33;
}

.inline-cta {
  color: var(--moss);
  font-weight: 600;
  text-decoration: underline;
}

.service-price {
  font-size: 20px;
  font-weight: 600;
  color: var(--moss);
}

.thanks-box {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.thanks-selected {
  display: none;
  padding: 12px 14px;
  background: rgba(76, 139, 92, 0.12);
  border-radius: 12px;
}

.thanks-selected.is-visible {
  display: block;
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .sidebar-cta {
    width: 100%;
  }

  .content {
    padding: 32px 6vw 72px;
  }

  .sticky-cta {
    position: static;
    max-width: none;
  }
}
