* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1d20;
  --muted: #5e6a75;
  --sand: #f6f1ea;
  --mist: #eef1f4;
  --leaf: #3f6b4f;
  --sun: #ffbf6b;
  --clay: #c07c5a;
  --white: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6vw;
  background: var(--white);
  border-bottom: 1px solid #e6eaee;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 15px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links a:hover {
  background: var(--mist);
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--leaf);
  color: var(--white);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--ink);
  font-weight: 600;
  border: 1px solid #e2d6c8;
}

.hero {
  background: linear-gradient(120deg, rgba(246, 241, 234, 0.9), rgba(255, 255, 255, 0.6)), url("https://images.unsplash.com/photo-1504203700686-0be70d0f1c92?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.section {
  padding: 64px 6vw;
}

.bg-sand {
  background: var(--sand);
}

.bg-mist {
  background: var(--mist);
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split-section.reverse {
  flex-direction: column-reverse;
}

.split-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
}

.headline {
  font-size: 32px;
  line-height: 1.2;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--mist);
  font-size: 14px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  border: 1px solid #e7ecf0;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 26px rgba(17, 25, 40, 0.08);
}

.card strong {
  font-size: 18px;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: var(--leaf);
}

.layered {
  background: var(--mist);
  border-radius: 26px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quote {
  padding: 18px;
  border-left: 4px solid var(--leaf);
  background: var(--sand);
  border-radius: 14px;
  font-style: italic;
}

.form-wrap {
  background: var(--white);
  border-radius: 22px;
  padding: 24px;
  border: 1px solid #e7ecf0;
  box-shadow: 0 18px 36px rgba(17, 25, 40, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9e0e6;
  font-size: 15px;
  font-family: inherit;
}

.inline-link {
  color: var(--leaf);
  font-weight: 600;
}

.footer {
  margin-top: auto;
  background: #101417;
  color: #dbe0e5;
  padding: 28px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #dbe0e5;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--clay);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: var(--white);
  border: 1px solid #e6eaee;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 14px 30px rgba(17, 25, 40, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-header {
  background: var(--sand);
}

.list-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e7ecf0;
}

@media (min-width: 900px) {
  .split-section {
    flex-direction: row;
    align-items: center;
    gap: 52px;
  }

  .split-section.reverse {
    flex-direction: row-reverse;
  }

  .headline {
    font-size: 44px;
  }

  .card-grid {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .list-row {
    flex-direction: row;
    gap: 22px;
  }
}
