:root {
  --bg: #f7f4ef;
  --bg-alt: #efeae2;
  --ink: #1b1a1a;
  --accent: #c04a2c;
  --accent-dark: #7d2b1b;
  --muted: #5f5b57;
  --card: #ffffff;
  --shadow: 0 16px 40px rgba(27, 26, 26, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

header {
  padding: 28px 0 10px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--accent-dark);
  border-radius: 999px;
}

.hero {
  padding: 40px 0 60px;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding: 48px 0;
}

.split-section.reverse {
  flex-direction: column-reverse;
}

.split-copy,
.split-visual {
  flex: 1;
}

.split-copy h1,
.split-copy h2 {
  margin-top: 0;
}

.split-copy p {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent-dark);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
}

.tag {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--accent-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.layered {
  background: linear-gradient(120deg, var(--bg-alt), #ffffff);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--card);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.card img {
  border-radius: 16px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.quote {
  padding: 18px 22px;
  background: #fff;
  border-left: 4px solid var(--accent);
  border-radius: 12px;
}

.form-block {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6d0c7;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
}

.inline-cta {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.footer {
  padding: 40px 0 60px;
  background: var(--bg-alt);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 0;
  background: #1b1a1a;
  color: #fff;
  z-index: 30;
}

.cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner.hidden {
  display: none;
}

@media (min-width: 860px) {
  .split-section {
    flex-direction: row;
    align-items: stretch;
  }

  .split-section.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .cookie-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
