:root {
  --bg: #f7f3ee;
  --bg-dark: #1b1b1b;
  --accent: #c96d4f;
  --accent-dark: #a2543c;
  --text: #1c1c1c;
  --muted: #6a5f57;
  --light: #ffffff;
  --line: #e5d8cf;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  padding: 24px 0 8px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

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

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

.hero {
  padding: 40px 0 60px;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.hero-content {
  flex: 1 1 320px;
}

.hero-media {
  flex: 1 1 320px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--light);
  border: none;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: #f1e7df;
}

.section.texture {
  background-image: linear-gradient(rgba(241, 231, 223, 0.9), rgba(241, 231, 223, 0.9)), url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.section.dark {
  background: var(--bg-dark);
  color: var(--light);
}

.section-head {
  margin-bottom: 28px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}

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

.column {
  flex: 1 1 260px;
}

.card {
  background: var(--light);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card.dark {
  background: #2b2b2b;
  color: var(--light);
}

.callout {
  border-left: 4px solid var(--accent);
  padding-left: 18px;
  margin: 20px 0;
}

.tag {
  display: inline-block;
  background: rgba(201, 109, 79, 0.18);
  color: var(--accent-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.layered {
  position: relative;
}

.layered::before {
  content: "";
  position: absolute;
  inset: -20px 20px 20px -20px;
  background: rgba(201, 109, 79, 0.08);
  border-radius: 24px;
  z-index: 0;
}

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

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

.pricing-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.pricing-item span {
  font-weight: 600;
}

.form-wrap {
  background: var(--light);
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

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

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input, select, textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d9c8be;
  font-size: 1rem;
  background: #fffdfb;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--line);
}

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

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

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--light);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 60;
}

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

.split-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.highlight {
  font-size: 1.1rem;
  font-weight: 600;
}

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

.inline-cta {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.thanks-actions {
  margin-top: 24px;
}

@media (max-width: 720px) {
  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
