:root {
  --ink: #1d1d1b;
  --mist: #f3f1ec;
  --clay: #d7cfc2;
  --ember: #b65a3c;
  --night: #2b2f3a;
  --sage: #6f7b6a;
  --sand: #efe7dc;
  --fog: #f9f7f3;
}

* {
  box-sizing: border-box;
}

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

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

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

header {
  padding: 24px 6vw 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.92rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--ember);
}

main {
  padding: 0 6vw 80px;
}

.section {
  margin: 56px 0;
}

.section.alternate {
  background: var(--mist);
  padding: 40px;
  border-radius: 24px;
}

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

.offset {
  position: relative;
  background: var(--sand);
  padding: 36px;
  border-radius: 20px;
}

.offset::after {
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background: rgba(182, 90, 60, 0.18);
  z-index: 0;
}

.offset > * {
  position: relative;
  z-index: 1;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: linear-gradient(120deg, rgba(245, 236, 226, 0.85), rgba(246, 243, 238, 0.95)),
    url("https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?auto=format&fit=crop&w=1400&q=80") center/cover;
  padding: 64px 40px;
  border-radius: 30px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 0;
}

.hero p {
  max-width: 620px;
  font-size: 1.05rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--ember);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: var(--night);
}

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

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

.card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.card img {
  border-radius: 14px;
  margin-bottom: 16px;
}

.floating-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: var(--night);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  z-index: 10;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-item {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgba(43, 47, 58, 0.08);
}

.price-tag {
  font-weight: 700;
  color: var(--ember);
}

.form-shell {
  background: var(--mist);
  padding: 28px;
  border-radius: 20px;
}

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

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(43, 47, 58, 0.2);
  font-size: 1rem;
  font-family: inherit;
}

footer {
  padding: 40px 6vw;
  background: var(--night);
  color: #fff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
}

.footer-links a {
  color: #fff;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 16px 6vw;
  display: none;
  gap: 12px;
  flex-direction: column;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 11;
}

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

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

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

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .pricing-list {
    flex-direction: row;
  }

  .pricing-item {
    flex: 1;
  }

  .footer-links {
    flex-direction: row;
    gap: 24px;
  }
}
