* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #fbf7f4;
  --ink: #1f1c1b;
  --muted: #5e5652;
  --accent: #b14b6d;
  --accent-dark: #8f3753;
  --soft: #f1e4dc;
  --contrast: #121212;
  --cream: #fff5ef;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav-wrap {
  padding: 24px 0 18px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-cta {
  padding: 10px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 24px;
  font-size: 14px;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: #fff;
}

.section.soft {
  background: var(--cream);
}

.section.dark {
  background: var(--contrast);
  color: #fff;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-col {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 16px 0;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 12px 0 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

p {
  margin-bottom: 16px;
  color: var(--muted);
}

.lead {
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 28px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn.light {
  background: #fff;
  color: var(--contrast);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.pill-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cta-group {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  background: var(--soft);
  padding: 6px 12px;
  border-radius: 18px;
  font-size: 13px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.card img {
  border-radius: 14px;
}

.card strong {
  color: var(--ink);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-tag {
  background: var(--soft);
  padding: 4px 10px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--accent-dark);
  font-size: 14px;
}

.form-wrap {
  background: #fff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ded7d2;
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 26px;
  font-weight: 600;
  z-index: 40;
}

.footer {
  padding: 40px 0;
  background: #121212;
  color: #fff;
}

.footer a {
  color: #fff;
  opacity: 0.7;
  font-size: 14px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  width: min(320px, 90%);
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 18px;
  border: none;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #e6e0dd;
  color: var(--ink);
}

.notice {
  background: #fff1ea;
  padding: 16px;
  border-radius: 16px;
}

.image-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mini-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mini-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

@media (min-width: 860px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .pricing-grid {
    flex-direction: row;
  }

  .pricing-grid .card {
    flex: 1;
  }

  .two-col {
    flex-direction: row;
  }
}
