* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f5f1ea;
  --ink: #1f1f1f;
  --muted: #5d5b57;
  --accent: #3b5b6d;
  --accent-soft: #d8e2e8;
  --highlight: #b44a32;
  --card: #ffffff;
  --line: #d7d0c6;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sidebar {
  background: #efe9df;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}

.sidebar nav {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-link {
  text-decoration: none;
  font-weight: 500;
}

.nav-cta {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.content {
  padding: 28px 20px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section {
  background: var(--card);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.section.alt {
  background: #fdfcf9;
  border: 1px solid var(--line);
  box-shadow: none;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-size: 2.3rem;
  margin: 0;
}

.hero p {
  margin: 0;
  color: var(--muted);
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.primary {
  background: var(--highlight);
  color: #fff;
}

.btn.ghost {
  border: 1px solid var(--highlight);
  color: var(--highlight);
  background: transparent;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split .panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--accent-soft);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card img {
  border-radius: 12px;
  height: 160px;
  object-fit: cover;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-tag {
  font-weight: 700;
  font-size: 1.2rem;
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.form-status {
  color: var(--highlight);
  font-weight: 600;
  min-height: 24px;
}

.footer {
  margin-top: 40px;
  padding: 24px;
  background: #eae3d7;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--muted);
}

.inline-cta {
  color: var(--highlight);
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  max-width: 320px;
  z-index: 6;
  box-shadow: var(--shadow);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  flex: 1;
}

.image-band {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-band img {
  border-radius: 18px;
  height: 180px;
  object-fit: cover;
}

@media (min-width: 960px) {
  .page {
    flex-direction: row;
  }

  .sidebar {
    width: 240px;
    border-bottom: none;
    border-right: 1px solid var(--line);
    min-height: 100vh;
  }

  .content {
    flex: 1;
    padding: 40px 48px 100px;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero .hero-copy,
  .hero .hero-visual {
    flex: 1;
  }

  .split {
    flex-direction: row;
  }

  .split .panel {
    flex: 1;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .pricing {
    flex-direction: row;
  }

  .pricing .card {
    flex: 1;
  }

  .image-band {
    flex-direction: row;
  }

  .image-band img {
    flex: 1;
  }
}
