:root {
  color-scheme: light;
  --sand-50: #faf6f1;
  --sand-100: #f3ebe3;
  --sand-200: #e7d8c9;
  --sand-300: #d9c4b1;
  --sand-500: #b99376;
  --coffee-700: #5a4538;
  --coffee-800: #3b2e27;
  --leaf-500: #7a8f7d;
  --accent: #c98b5f;
  --shadow: 0 16px 40px rgba(59, 46, 39, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--sand-50);
  color: var(--coffee-800);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: var(--sand-100);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-weight: 500;
}

.sidebar nav a {
  padding: 10px 12px;
  border-radius: 14px;
  background: transparent;
  transition: background 0.2s ease;
}

.sidebar nav a:hover,
.sidebar nav a:focus {
  background: var(--sand-200);
}

.sidebar .cta-primary {
  margin-top: auto;
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 36px 6vw 80px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-top h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin: 0;
}

.hero-top p {
  margin: 0;
  color: #5f4c41;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
}

.btn-solid {
  background: var(--coffee-800);
  color: #fff;
}

.btn-outline {
  border-color: var(--coffee-800);
  color: var(--coffee-800);
  background: transparent;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--sand-100);
  border-radius: var(--radius-md);
}

.cards-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card strong {
  font-size: 1.05rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sand-200);
  font-size: 0.85rem;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: #fff;
}

.section-muted {
  background: var(--sand-100);
}

.offset-blocks {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offset-card {
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  margin-left: 10px;
}

.offset-card:nth-child(2) {
  margin-left: 50px;
  background: var(--sand-100);
}

.offset-card:nth-child(3) {
  margin-left: 20px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--sand-100);
}

.service-item span {
  font-weight: 700;
}

.price {
  font-size: 1.1rem;
  color: var(--coffee-700);
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--sand-300);
  font-size: 1rem;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  align-self: flex-end;
  background: var(--coffee-800);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 28px;
  border-top: 1px solid var(--sand-300);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius-md);
  padding: 18px;
  display: none;
  gap: 16px;
  flex-direction: column;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-actions button {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--coffee-800);
  background: transparent;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--coffee-800);
  color: #fff;
}

.highlight-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--sand-300);
}

.divider {
  height: 2px;
  background: var(--sand-200);
  border-radius: 999px;
  width: 80px;
}

@media (min-width: 880px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-top {
    flex: 1;
  }

  .hero img {
    max-width: 360px;
  }

  .split {
    flex-direction: row;
  }

  .split-card {
    flex: 1;
  }

  .cards-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .services-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item {
    flex: 1 1 240px;
  }

  .form-shell {
    flex-direction: row;
  }

  .form-shell .form-copy {
    flex: 1;
  }

  .form-shell form {
    flex: 1;
  }
}

@media (max-width: 880px) {
  .page-shell {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .sidebar nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar .cta-primary {
    margin-top: 0;
  }
}
