* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1a17;
  --muted: #5c5a57;
  --sand: #f4f1ec;
  --leaf: #2f5b3a;
  --clay: #c26d3a;
  --mist: #e9edf0;
  --sun: #f2c46d;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw 12px;
  gap: 16px;
  background: #fff;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--mist);
  padding: 8px 12px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 44px 6vw 60px;
  background: var(--sand);
  position: relative;
}

.hero-content {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.button.primary {
  background: var(--ink);
  color: #fff;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button:hover {
  background: var(--leaf);
  color: #fff;
}

.hero-media {
  width: 100%;
  background: #d8d1c7;
  border-radius: 24px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 380px;
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--mist);
}

.section.tight {
  padding: 40px 6vw;
}

.section-title {
  font-size: 2rem;
  line-height: 1.2;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.split-media {
  flex: 1;
  background: #d9e1dd;
  border-radius: 20px;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 320px;
}

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.flow-step {
  padding: 18px 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e3e0db;
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.testimonial {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e3e0db;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e3e0db;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card-media {
  background: #e2e6de;
}

.bg-warm {
  background: #d6cfc5;
}

.bg-mist {
  background: #d7dde2;
}

.bg-clay {
  background: #e4dcd1;
}

.bg-sage {
  background: #d8e1d8;
}

.bg-peach {
  background: #e7d9cf;
}

.bg-linen {
  background: #dbe3df;
}

.bg-sand {
  background: #e5dfd5;
}

.bg-frost {
  background: #e1e6e9;
}

.bg-steel {
  background: #d9dfe4;
}

.card-media img {
  width: 100%;
  height: 180px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-tag {
  font-weight: 700;
  color: var(--leaf);
}

.highlight {
  background: var(--sun);
  padding: 8px 14px;
  border-radius: 14px;
  font-weight: 600;
  align-self: flex-start;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid #e3e0db;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d7d4cf;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--clay);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 9;
}

.footer {
  margin-top: auto;
  background: #1f1c18;
  color: #fff;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer small {
  color: #d7d2ca;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #fff;
  border: 1px solid #d6d2cc;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.cookie-actions button:hover {
  background: var(--ink);
  color: #fff;
}

.legal-block {
  background: var(--sand);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.image-frame {
  background: #dde2e6;
  border-radius: 20px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 340px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-media img {
    height: 420px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }
}
