* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4f1;
  --ink: #1f1a16;
  --muted: #6b5f56;
  --accent: #c68d7b;
  --accent-dark: #9e6b5b;
  --cream: #fff7f1;
  --sage: #e4ece6;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

header {
  padding: 24px 6vw;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 0 6vw 80px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(31, 26, 22, 0.08);
}

.split.alt {
  background: var(--cream);
}

.split.sage {
  background: var(--sage);
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.btn.dark {
  background: var(--ink);
  color: #fff;
}

.inline-link {
  display: inline-block;
  color: var(--accent-dark);
  border-bottom: 1px solid var(--accent-dark);
  padding-bottom: 2px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(31, 26, 22, 0.08);
}

.price-tag {
  font-weight: 700;
  color: var(--accent-dark);
}

.highlight-bar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border-left: 3px solid var(--accent);
  background: rgba(198, 141, 123, 0.08);
  border-radius: 16px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(31, 26, 22, 0.1);
  font-size: 0.85rem;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(31, 26, 22, 0.2);
  font-size: 1rem;
  font-family: inherit;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer {
  padding: 40px 6vw 80px;
  background: #181512;
  color: #fff;
}

.footer a {
  color: #f4d6c8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(31, 26, 22, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(31, 26, 22, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.thanks-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 36px rgba(31, 26, 22, 0.12);
  max-width: 720px;
}

@media (min-width: 900px) {
  h1 {
    font-size: 3.2rem;
  }

  .split,
  .split.reverse {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .split-content,
  .split-media {
    flex: 1;
  }

  .two-col {
    flex-direction: row;
  }

  .price-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 240px;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
