.root {
  --ink: #1d1d1b;
  --muted: #5a5a57;
  --accent: #b07a4a;
  --accent-strong: #8f5e36;
  --cream: #f6f1ea;
  --stone: #e7e0d7;
  --sage: #d8dfd3;
  --sand: #efe6db;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fffaf6;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 6vw 10px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom: 1px solid var(--accent);
}

.ad-label {
  font-size: 0.85rem;
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 10px 6vw 40px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-visual {
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 420px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--accent-strong);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-strong);
}

.section {
  padding: 44px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-bg {
  background-size: cover;
  background-position: center;
}

.section-bg-one {
  background-image: url("https://images.unsplash.com/photo-1502005097973-6a7082348e28?w=1400&q=80");
  background-color: #e2d8cc;
}

.section-bg-two {
  background-image: url("https://images.unsplash.com/photo-1503602642458-232111445657?w=1400&q=80");
  background-color: #d9d0c8;
}

.section-title {
  font-size: 1.8rem;
  margin: 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.card-image {
  background: var(--sage);
  border-radius: 12px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 180px;
}

.muted {
  color: var(--muted);
}

.highlight {
  background: var(--cream);
  border-radius: 20px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.timeline-step {
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 600;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid #e3d8cc;
  padding-bottom: 12px;
}

.form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d7cabb;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 10;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

footer {
  padding: 32px 6vw 50px;
  background: #1e1b18;
  color: #f3ede5;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2a2622;
  color: #f6f1ea;
  display: none;
  gap: 16px;
  padding: 16px 6vw;
  z-index: 12;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content,
  .hero-visual {
    flex: 1 1 50%;
  }
}
