* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1c1f;
  --muted: #5c6470;
  --accent: #b53b2f;
  --accent-dark: #8f2f26;
  --soft: #f2efe9;
  --sky: #e7f0f4;
  --sand: #fbf7f1;
  --line: #d9d2c7;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

header {
  padding: 24px 6vw;
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  padding: 56px 6vw;
}

.section.soft {
  background: var(--soft);
}

.section.sky {
  background: var(--sky);
}

.section.sand {
  background: var(--sand);
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--muted);
}

.section h1,
.section h2,
.section h3 {
  line-height: 1.2;
  margin: 12px 0 16px;
}

.section p {
  color: var(--muted);
  max-width: 46ch;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.cta {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
}

.cta:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.cta.secondary {
  background: transparent;
  color: var(--accent);
}

.cta.ghost {
  background: #ffffff;
  color: var(--ink);
  border-color: var(--line);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.inline-link:hover {
  text-decoration: underline;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.quote {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  color: var(--ink);
  font-style: italic;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button {
  font-family: inherit;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer {
  padding: 36px 6vw;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  cursor: pointer;
}

.cookie-actions button.primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.thanks-box {
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #ffffff;
}

@media (min-width: 860px) {
  .split {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .split .content,
  .split .visual {
    flex: 1;
  }

  .card-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
