* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1d21;
  --muted: #5f646b;
  --accent: #2f6f4e;
  --accent-soft: #e0efe6;
  --sand: #f4f1eb;
  --stone: #e7e3db;
  --night: #101417;
  --cream: #fbfaf7;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sidebar {
  background: var(--night);
  color: #f5f5f5;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.brand {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand span {
  color: #b9e2c8;
  font-weight: 500;
  font-size: 0.95rem;
  display: block;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.nav a {
  padding: 0.35rem 0.5rem;
  border-left: 2px solid transparent;
  transition: border 0.2s, color 0.2s;
}

.nav a:hover {
  border-left-color: #b9e2c8;
  color: #b9e2c8;
}

.sidebar-cta {
  margin-top: auto;
  background: #1f2a23;
  padding: 1rem;
  border-radius: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #265a41;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 3.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section h1,
.section h2,
.section h3 {
  line-height: 1.2;
}

.section--tone {
  background: var(--sand);
}

.section--deep {
  background: var(--night);
  color: #f5f5f5;
}

.section--soft {
  background: var(--accent-soft);
}

.section--image {
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.1)), url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?q=80&w=1600&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pill {
  display: inline-flex;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: var(--stone);
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.card {
  background: var(--accent);
  border-radius: 1.2rem;
  padding: 1.4rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.card img {
  border-radius: 0.9rem;
  height: 150px;
  object-fit: cover;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.list span {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.price-table {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.price-row {
  background: #fff;
  border-radius: 1rem;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border: 1px solid #e6e6e6;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  font-style: italic;
}

.form {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 0.7rem 0.9rem;
  border-radius: 0.7rem;
  border: 1px solid #d7d7d7;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  align-self: flex-start;
  position: sticky;
  top: 1rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.meta-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.meta-item {
  padding: 1rem;
  border-radius: 0.9rem;
  background: #fff;
  border: 1px solid #e7e3db;
}

.footer {
  padding: 2.5rem 1.5rem;
  background: var(--night);
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer a {
  color: #f5f5f5;
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.cookie-btn {
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.cookie-btn.secondary {
  background: transparent;
  color: var(--accent);
}

@media (min-width: 900px) {
  .page {
    flex-direction: row;
  }

  .sidebar {
    width: 260px;
    min-height: 100vh;
  }

  .content {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split > * {
    flex: 1;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 250px;
  }

  .price-table {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-row {
    flex: 1 1 240px;
  }

  .meta-grid {
    flex-direction: row;
  }

  .meta-item {
    flex: 1;
  }
}
