* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d252e;
  --muted: #5c6772;
  --accent: #3a5b7c;
  --accent-soft: #e6eef6;
  --sand: #f6f2ec;
  --mist: #eef1f4;
  --gold: #c4a15f;
  --border: #d8dde3;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

header {
  padding: 24px 6vw 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 6vw;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  width: fit-content;
}

.headline {
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.2;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn.gold {
  background: var(--gold);
  color: #1a1a1a;
}

.section-tone {
  background: var(--mist);
}

.section-sand {
  background: var(--sand);
}

.frame {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  background: #fff;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card img {
  border-radius: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.inline-cta {
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.split-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 36px 6vw 48px;
  background: #101820;
  color: #f4f5f7;
}

.split-footer a {
  color: #f4f5f7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.muted {
  color: var(--muted);
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .split-content,
  .split-media {
    flex: 1;
  }

  .card-row {
    flex-direction: row;
  }

  .card-row .card {
    flex: 1;
  }

  .split-footer {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-banner {
    max-width: 520px;
    left: auto;
    right: 24px;
  }
}
