:root {
  --bg: #f7f4f1;
  --ink: #1f1a17;
  --accent: #a45c7a;
  --accent-dark: #7f3b56;
  --soft: #efe6e1;
  --sand: #f0e8e0;
  --mint: #e5f0ee;
  --line: #e0d7d1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  padding: 28px 0 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.nav-links a {
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 18px;
}

.nav-links a:hover {
  background: var(--soft);
}

.ad-label {
  background: #f9eceb;
  color: #7a2d2d;
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 14px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  justify-content: space-between;
  padding: 48px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.split .media {
  flex: 1;
  min-height: 320px;
  background: var(--sand);
  border-radius: 24px;
  overflow: hidden;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
}

h1, h2, h3 {
  margin: 0;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.2rem;
}

.section-soft {
  background: var(--soft);
}

.section-mint {
  background: var(--mint);
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(31, 26, 23, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .card-media {
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--sand);
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.btn:hover {
  background: var(--accent-dark);
}

.inline-link {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 40;
}

.form-panel {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 14px 30px rgba(31, 26, 23, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input, select, textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.testimonial {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  border-radius: 12px;
}

.footer {
  padding: 32px 0 64px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  border-color: currentColor;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f1a17;
  color: #fff;
  padding: 16px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 50;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 8px 14px;
}

.banner-note {
  font-size: 0.9rem;
}

.hero-tag {
  font-size: 0.95rem;
  color: var(--accent-dark);
}

.notice {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--line);
}

.bg-sand {
  background-color: #e7d7d3;
}

.bg-rose {
  background-color: #efe1db;
}

.bg-mist {
  background-color: #e9ecea;
}

.bg-latte {
  background-color: #e2ded9;
}

.bg-blush {
  background-color: #ece3de;
}

.bg-clay {
  background-color: #e7dcd7;
}

.bg-warm {
  background-color: #e5dfdc;
}

.bg-rose-2 {
  background-color: #efe2dc;
}

.bg-dust {
  background-color: #e7dfda;
}

.bg-stone {
  background-color: #e8ded9;
}

.bg-soft-2 {
  background-color: #e6ddd7;
}

.bg-amber {
  background-color: #e8dfd8;
}

@media (max-width: 880px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    margin: 16px auto 0;
    display: inline-flex;
  }
}
