/* Base */
:root {
  color-scheme: light;
  --ink: #1c1b1a;
  --muted: #5c5a57;
  --accent: #2e6b5f;
  --accent-dark: #204a43;
  --sand: #f3efe9;
  --mist: #e8eceb;
  --paper: #ffffff;
  --line: #d6d2cb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--sand);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid var(--line);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand h1 {
  font-size: 22px;
  letter-spacing: 0.5px;
  margin: 0;
}

.brand span {
  font-size: 13px;
  color: var(--muted);
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 600;
}

.side-nav a {
  padding: 8px 12px;
  border-radius: 18px;
  background: transparent;
  transition: background 0.2s ease;
}

.side-nav a:hover {
  background: var(--paper);
}

.side-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 64px 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section.mist {
  background: var(--mist);
}

.section.sand {
  background: var(--sand);
}

.section.layered::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  height: 45%;
  background: rgba(46, 107, 95, 0.08);
  z-index: 0;
}

.section > * {
  position: relative;
  z-index: 1;
}

.hero {
  display: flex;
  gap: 48px;
  align-items: center;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h2 {
  font-size: 38px;
  margin: 0;
  line-height: 1.15;
}

.hero-text p {
  max-width: 520px;
  color: var(--muted);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.split-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.split-row.reverse {
  flex-direction: row-reverse;
}

.split-card {
  flex: 1;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-card strong {
  font-size: 20px;
}

.quote-block {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.quote-block img {
  width: 140px;
  border-radius: 18px;
}

.quote {
  background: var(--paper);
  border-left: 4px solid var(--accent);
  padding: 18px 22px;
  border-radius: 16px;
}

.pricing-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pricing-card {
  flex: 1 1 220px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card span {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-dark);
}

.list-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.list-item {
  flex: 1 1 240px;
  background: var(--paper);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--line);
}

.form-wrap {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.form-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

form {
  flex: 1;
  background: var(--paper);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent-dark);
}

.btn.ghost {
  background: #fff;
  border-color: var(--line);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.footer {
  padding: 40px 80px 60px;
  background: var(--ink);
  color: #f7f3ee;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 16px;
  max-width: 360px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.two-col {
  display: flex;
  gap: 28px;
}

.two-col > div {
  flex: 1;
}

.tight {
  max-width: 620px;
}

.accent {
  color: var(--accent-dark);
  font-weight: 600;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .side-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .content {
    width: 100%;
  }

  .section {
    padding: 48px 28px;
  }

  .hero,
  .split-row,
  .form-wrap,
  .two-col {
    flex-direction: column;
  }

  .hero-image {
    justify-content: flex-start;
  }
}
