* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f4f1;
  --text: #1f1d1a;
  --muted: #5c5852;
  --accent: #1c6b5a;
  --accent-dark: #0f4b3f;
  --surface: #ffffff;
  --sand: #efe7dd;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sidebar {
  background: var(--surface);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-bottom: 1px solid #e3ddd5;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  color: var(--muted);
  font-weight: 500;
}

.sidebar-cta {
  background: var(--sand);
  padding: 16px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-cta {
  position: sticky;
  top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn.dark {
  background: var(--accent-dark);
}

.content {
  flex: 1;
}

.section {
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.alt {
  background: var(--surface);
}

.section.sand {
  background: var(--sand);
}

.section.hero {
  background: linear-gradient(rgba(17, 26, 20, 0.65), rgba(17, 26, 20, 0.65)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1600&q=80")
      center/cover;
  color: #fff;
  min-height: 60vh;
  justify-content: center;
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #d9e6df;
}

.grid-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--surface);
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(23, 22, 20, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.price-tag {
  font-weight: 700;
  font-size: 20px;
  color: var(--accent-dark);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.form-shell {
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.1);
}

.form-shell label {
  font-size: 14px;
  color: var(--muted);
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d8d0c7;
  font-size: 15px;
  font-family: inherit;
}

.form-shell textarea {
  min-height: 90px;
}

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.footer {
  padding: 32px 24px;
  background: #171513;
  color: #e9e1d8;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #e9e1d8;
  font-weight: 500;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: var(--surface);
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(23, 22, 20, 0.18);
  max-width: 320px;
  display: none;
  z-index: 50;
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (min-width: 900px) {
  .layout {
    flex-direction: row;
  }

  .sidebar {
    width: 280px;
    min-height: 100vh;
    border-right: 1px solid #e3ddd5;
    border-bottom: none;
  }

  .section {
    padding: 64px 72px;
  }

  .grid-row {
    flex-direction: row;
  }

  .grid-row.split > * {
    flex: 1;
  }

  .grid-row.tight > * {
    flex: 1;
  }

  .hero {
    padding: 96px 72px;
  }
}
