* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f5f2;
  --ink: #1f1b1a;
  --muted: #6b6360;
  --accent: #a34b35;
  --accent-soft: #f0d5cd;
  --line: #e4ddd7;
  --sand: #f9efe7;
  --olive: #d8d3c6;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  flex: 0 0 240px;
  padding: 32px 24px;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 24px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.nav a {
  padding: 6px 0;
  color: var(--muted);
}

.nav a:hover {
  color: var(--ink);
}

.content {
  flex: 1;
  padding: 40px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(25, 23, 22, 0.06);
}

.section.slim {
  padding: 24px 28px;
}

.section.soft {
  background: var(--sand);
}

.section.olive {
  background: var(--olive);
}

.section.dark {
  background: var(--ink);
  color: var(--white);
}

.section.no-shadow {
  box-shadow: none;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split > div {
  flex: 1;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 38px;
  line-height: 1.1;
  margin: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 600;
  background: var(--ink);
  color: var(--white);
}

.btn.light {
  background: var(--white);
  color: var(--ink);
}

.btn.ghost {
  background: transparent;
  color: inherit;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
  height: 160px;
  object-fit: cover;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 12px;
  color: var(--accent);
}

.price {
  font-size: 22px;
  font-weight: 600;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.footer {
  margin-top: 40px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 20;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  padding: 12px 18px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  box-shadow: 0 18px 40px rgba(25, 23, 22, 0.2);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 30;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(25, 23, 22, 0.12);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(25, 23, 22, 0.16);
}

.muted {
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list li {
  padding-left: 18px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.stat {
  flex: 1 1 140px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.stat strong {
  display: block;
  font-size: 22px;
}

.image-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-strip img {
  border-radius: 16px;
  height: 180px;
  object-fit: cover;
}

.notice {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-bg {
  background-image: linear-gradient(120deg, rgba(163, 75, 53, 0.1), rgba(31, 27, 26, 0.05));
}

@media (min-width: 860px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero h1 {
    font-size: 46px;
  }

  .card-row {
    flex-direction: row;
  }

  .image-strip {
    flex-direction: row;
  }
}

@media (max-width: 860px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
