:root {
  color-scheme: light;
  --ink: #1e1a16;
  --muted: #5e5247;
  --accent: #8c2f1d;
  --accent-soft: #f1d8c4;
  --sand: #f8f2ec;
  --sun: #f2c879;
  --forest: #2a4a3e;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(30, 26, 22, 0.12);
}

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

body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

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

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

.site-header {
  padding: 28px 6vw 10px;
  background: var(--sand);
}

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

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

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

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

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

.hero {
  position: relative;
  padding: 90px 6vw 70px;
  background: linear-gradient(110deg, rgba(140, 47, 29, 0.92), rgba(30, 26, 22, 0.7)),
    url("https://images.unsplash.com/photo-1528207776546-365bb710ee93?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--white);
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 680px;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
  max-width: 560px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--sun);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.cookie-banner .btn-outline {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-dark {
  background: var(--forest);
  color: var(--white);
}

.section {
  padding: 80px 6vw;
  position: relative;
}

.section-light {
  background: var(--white);
}

.section-accent {
  background: var(--accent-soft);
}

.section-dark {
  background: #181512;
  color: var(--white);
}

.section .section-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.asym {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.asym-row.reverse {
  flex-direction: column;
}

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

.text-block h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.2;
}

.text-block p {
  color: var(--muted);
}

.highlight-card {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.layered {
  position: relative;
}

.layered::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: var(--accent-soft);
  z-index: -1;
}

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

.card {
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

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

.price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent);
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
}

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

.split-list div {
  padding-left: 18px;
  border-left: 3px solid var(--accent);
}

.form-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}

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

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7c9ba;
  font: inherit;
  background: #fffaf5;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(140, 47, 29, 0.3);
  border-color: var(--accent);
}

.footer {
  padding: 50px 6vw;
  background: #161311;
  color: var(--white);
}

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

.footer a {
  color: #f8eadd;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 10;
}

.sticky-cta a {
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  gap: 12px;
  flex-direction: column;
  z-index: 20;
}

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

@media (min-width: 760px) {
  .asym-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .footer-columns {
    flex-direction: row;
    justify-content: space-between;
  }

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

  .split-list div {
    flex: 1;
  }
}
