:root {
  color-scheme: light;
  --forest: #0f1a16;
  --moss: #20352b;
  --sage: #8aa08f;
  --stone: #f5f3f0;
  --sun: #f5c57a;
  --river: #2f6f6d;
  --clay: #8c6e54;
  --ink: #1d1f1f;
  --soft: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--stone);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 28px 24px 32px;
  background: var(--forest);
  color: var(--soft);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.sidebar .mini-cta {
  margin-top: auto;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--sun);
  color: var(--forest);
  font-weight: 600;
  text-align: center;
}

.main {
  flex: 1;
  padding: 32px 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border-radius: 20px;
  background: var(--soft);
  box-shadow: 0 10px 30px rgba(15, 26, 22, 0.08);
}

.section.accent {
  background: #e7efe7;
}

.section.deep {
  background: #10201b;
  color: var(--soft);
}

.split {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 26, 22, 0.08);
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.headline {
  font-size: clamp(28px, 3vw, 42px);
  margin: 8px 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--river);
  color: var(--soft);
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--river);
  color: var(--river);
}

.inline-link {
  text-decoration: underline;
  color: var(--river);
  font-weight: 600;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  padding: 18px;
  border-radius: 16px;
  background: #f4f1ea;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.dark {
  background: #1b2b25;
  color: var(--soft);
}

.service-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--river);
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(15, 26, 22, 0.15);
  font-size: 14px;
  font-family: inherit;
}

.note {
  font-size: 14px;
  color: #3e4b45;
}

.footer {
  padding: 24px 0 0;
  font-size: 13px;
  color: #5b5b5b;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--clay);
  color: var(--soft);
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  z-index: 8;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 320px;
  padding: 16px;
  background: var(--soft);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.page-title {
  font-size: clamp(26px, 3vw, 36px);
  margin: 0;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--river);
}

.full-width {
  width: 100%;
}

.muted {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar .mini-cta {
    width: 100%;
  }

  .main {
    padding: 28px 20px 80px;
  }
}
