* {
  box-sizing: border-box;
}

:root {
  --ink: #1a1a1a;
  --muted: #5a5f66;
  --accent: #d34f7c;
  --accent-dark: #a83a61;
  --canvas: #f6f2ef;
  --panel: #ffffff;
  --shadow: rgba(26, 26, 26, 0.08);
  --sea: #2f5d7c;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

header {
  padding: 28px 6vw 10px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand span {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f1e8eb;
  color: var(--accent-dark);
  font-size: 0.8rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px 6vw 40px;
  align-items: center;
}

.hero-copy {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  margin: 0;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.hero-visual {
  flex: 1 1 320px;
}

.image-frame {
  background: #eadfe5;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 24px var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  padding: 50px 6vw;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-content h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2vw, 2.4rem);
}

.split-content p,
.split-content li {
  color: var(--muted);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 6px 14px;
  background: #efe7ea;
  border-radius: 999px;
  font-size: 0.85rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 10px 0 0;
}

.card {
  flex: 1 1 220px;
  background: var(--panel);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 20px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
}

.price-tag {
  font-weight: 700;
  color: var(--sea);
}

.section-highlight {
  background: #fdf9f6;
  border-top: 1px solid #efe2e9;
  border-bottom: 1px solid #efe2e9;
}

.quote-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.quote {
  flex: 1 1 240px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  border-left: 4px solid var(--accent);
}

.form-shell {
  background: var(--panel);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e3d8de;
  font-size: 1rem;
  font-family: inherit;
}

.inline-link {
  font-weight: 600;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.section-title a {
  font-size: 0.95rem;
}

.footer {
  padding: 40px 6vw 60px;
  background: #161616;
  color: #f4f4f4;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f4b3c6;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column {
  flex: 1 1 200px;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: sticky;
  bottom: 14px;
  margin: 0 6vw 20px;
  display: flex;
  justify-content: flex-end;
  z-index: 2;
}

.sticky-cta a {
  background: var(--sea);
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  box-shadow: 0 12px 18px rgba(47, 93, 124, 0.25);
}

.content {
  padding: 10px 6vw 40px;
}

.content h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.content p {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 26px var(--shadow);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.hidden {
  display: none;
}

.note-panel {
  background: #f1eef0;
  padding: 16px 18px;
  border-radius: 14px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.list li {
  color: var(--muted);
}

.bg-rose {
  background: #d8d2d1;
}

.bg-sand {
  background: #e3d7cd;
}

.bg-sky {
  background: #dfe7ef;
}

.bg-mist {
  background: #e3e5e2;
}

.bg-fern {
  background: #d9e1da;
}

.bg-lilac {
  background: #d7d4dc;
}

.bg-plum {
  background: #e6dfe8;
}
