* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --forest: #1f3b2c;
  --moss: #4d6f4d;
  --sand: #f3efe6;
  --clay: #c2a37a;
  --river: #5b7c8a;
  --ink: #1a1f1d;
  --mist: #f7f7f2;
  --accent: #e07b39;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 220px;
  padding: 32px 24px;
  background: #fff;
  border-right: 1px solid #e0e0d8;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  font-size: 14px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav a {
  font-size: 14px;
  color: var(--ink);
}

.nav a:hover {
  color: var(--accent);
}

.sidebar .micro-note {
  font-size: 12px;
  color: #5a665f;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 48px 120px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border-radius: 20px;
}

.section.alt {
  background: #ffffff;
  box-shadow: 0 10px 35px rgba(28, 38, 32, 0.08);
}

.section.tint {
  background: var(--sand);
}

.section.deep {
  background: #e9f0ec;
}

.section.hero {
  background: linear-gradient(120deg, #f6f2ea, #dde8df);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-text {
  flex: 1 1 300px;
}

.hero-text h1 {
  font-size: 38px;
  line-height: 1.15;
  color: var(--forest);
}

.hero-text p {
  margin-top: 14px;
  font-size: 17px;
}

.hero-cta {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn.outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

.btn.small {
  padding: 8px 14px;
  font-size: 13px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e4e0d6;
}

.card h3 {
  color: var(--forest);
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.split > div {
  flex: 1 1 260px;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.quote {
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #d9d4c9;
  font-size: 13px;
}

.form-section {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 40px rgba(23, 32, 27, 0.12);
}

.service-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-option {
  flex: 1 1 210px;
  border: 1px solid #d7d2c8;
  border-radius: 16px;
  padding: 16px;
  cursor: pointer;
  background: #faf8f2;
}

.service-option input {
  display: none;
}

.service-option span {
  font-weight: 600;
  color: var(--forest);
}

.service-option small {
  display: block;
  margin-top: 6px;
  color: #526057;
}

.service-option.selected {
  border-color: var(--accent);
  background: #fff3e9;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

label {
  font-size: 14px;
  color: #324035;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d2cfc6;
  font-size: 14px;
  background: #fff;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: var(--forest);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
}

.footer {
  padding: 28px;
  background: #f0ece3;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookies {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  padding: 16px;
  max-width: 320px;
  z-index: 12;
  display: none;
}

.cookies p {
  font-size: 13px;
  margin-bottom: 12px;
}

.cookies .actions {
  display: flex;
  gap: 10px;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(18, 28, 22, 0.15);
}

.tagline {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--moss);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-item strong {
  color: var(--forest);
}

.badge {
  font-size: 12px;
  background: #eaf1ec;
  padding: 6px 10px;
  border-radius: 999px;
  color: #355140;
}

.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.section-title h2 {
  color: var(--forest);
  font-size: 26px;
}

.small-note {
  font-size: 13px;
  color: #5c6a60;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    border-right: none;
    border-bottom: 1px solid #e0e0d8;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .content {
    padding: 28px 24px 120px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero-text h1 {
    font-size: 30px;
  }

  .section {
    padding: 22px;
  }
}
