* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1b1a;
  --muted: #5b5b5b;
  --sand: #f4f1ec;
  --stone: #e7e0d6;
  --forest: #2f4b3b;
  --accent: #d8913d;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background: var(--white);
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--ink);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  font-size: 14px;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 40px;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw;
}

.split-section.alt {
  background: var(--sand);
}

.split-section.deep {
  background: var(--forest);
  color: var(--white);
}

.split-section.deep .muted,
.split-section.deep p {
  color: rgba(255, 255, 255, 0.7);
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row.reverse {
  flex-direction: column;
}

.split-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--accent);
}

h1 {
  font-size: 36px;
  line-height: 1.15;
}

h2 {
  font-size: 28px;
  line-height: 1.2;
}

h3 {
  font-size: 18px;
  line-height: 1.3;
}

.muted {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 10px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font-size: 14px;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}

.btn.light {
  background: var(--white);
  color: var(--ink);
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.price-item span {
  font-weight: 600;
}

.form-panel {
  background: var(--white);
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-family: inherit;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

.sticky-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--ink);
  color: var(--white);
  padding: 14px 6vw;
  position: sticky;
  bottom: 0;
  margin-top: 10px;
}

.sticky-cta .btn {
  border-color: var(--white);
  color: var(--white);
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 6vw 50px;
  background: var(--stone);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.notice {
  padding: 18px;
  border-radius: 12px;
  background: var(--sand);
}

@media (min-width: 960px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .split-row {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .split-row.reverse {
    flex-direction: row-reverse;
  }

  .split-copy,
  .split-media {
    flex: 1;
  }

  .card-stack {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .form-panel {
    padding: 28px;
  }
}
