:root {
  color-scheme: light;
  --ink: #1e1b18;
  --muted: #6a5b4f;
  --sand: #f6f0ea;
  --clay: #d6c1ab;
  --copper: #b0815c;
  --stone: #ede5dc;
  --accent: #7a5134;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 8vw 10px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px 8vw 40px;
}

.hero-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-main h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin: 0;
}

.hero-card {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(30, 27, 24, 0.08);
  max-width: 420px;
}

.hero-image {
  margin-left: auto;
  width: min(560px, 92vw);
  border-radius: 24px;
  overflow: hidden;
  border: 6px solid var(--stone);
  transform: rotate(-1.5deg);
}

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

.tag {
  background: var(--clay);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.section {
  padding: 50px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-alt {
  background: var(--stone);
}

.section-offset {
  background: #fff;
  margin: 0 6vw;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(34, 26, 18, 0.08);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.split .copy {
  max-width: 520px;
}

.split .visual {
  align-self: flex-end;
  width: min(520px, 90vw);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(30, 27, 24, 0.08);
}

.card h3 {
  margin: 0;
}

.card img {
  border-radius: 12px;
}

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

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
}

.cta-ghost {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.cta-link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-left: 2px solid var(--clay);
  padding-left: 18px;
}

.timeline strong {
  display: block;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(30, 27, 24, 0.08);
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(30, 27, 24, 0.2);
  font-size: 1rem;
  font-family: inherit;
}

button[type="submit"] {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.footer {
  padding: 40px 8vw 60px;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--copper);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  max-width: 280px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

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

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}

.cookie-actions .reject {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

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

.pill {
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--stone);
  font-weight: 600;
}

.badge {
  background: var(--accent);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
}

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

.two-up {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.image-stack img {
  border-radius: 18px;
  border: 4px solid #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 16px;
  background: var(--stone);
}

.banner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  background: var(--accent);
  color: #fff;
  padding: 30px;
  border-radius: 20px;
}

.policy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 860px;
  padding: 40px 8vw;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }

  .hero-main {
    flex: 1;
  }

  .split {
    flex-direction: row;
    justify-content: space-between;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .two-up {
    flex-direction: row;
  }

  .image-stack {
    flex: 1;
  }
}
