:root {
  --bg: #f7f5f2;
  --text: #2e2a27;
  --muted: #6b625c;
  --accent: #d46a7e;
  --accent-dark: #b65266;
  --card: #ffffff;
  --line: #e6e0da;
  --sun: #f4d8c6;
  --leaf: #dfe8d9;
}

* {
  box-sizing: border-box;
}

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

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

a:hover {
  text-decoration: underline;
}

header {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

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

.nav-links a {
  font-size: 0.95rem;
}

.ad-label {
  background: var(--leaf);
  color: #3e4a3f;
  font-size: 0.78rem;
  padding: 6px 10px;
  border-radius: 20px;
}

.hero {
  display: flex;
  gap: 0;
  min-height: 70vh;
}

.split {
  display: flex;
  gap: 0;
  align-items: stretch;
}

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

.split > .panel {
  flex: 1;
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.panel.light {
  background: #fff;
}

.panel.soft {
  background: var(--leaf);
}

.panel.sun {
  background: var(--sun);
}

.panel.card {
  background: var(--card);
  border-left: 1px solid var(--line);
}

.panel .eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--muted);
}

.panel h1,
.panel h2,
.panel h3 {
  margin: 0;
}

.panel h1 {
  font-size: 2.6rem;
  line-height: 1.2;
}

.panel h2 {
  font-size: 2rem;
  line-height: 1.25;
}

.panel p {
  margin: 0;
}

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

.btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.btn:hover {
  background: var(--accent-dark);
}

.btn.secondary:hover {
  background: var(--accent-dark);
  color: #fff;
}

.image-wrap {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bg-warm-1 { background: #efe6e1; }
.bg-leaf-1 { background: #e8efe6; }
.bg-warm-2 { background: #f1e4d8; }
.bg-leaf-2 { background: #e7ece7; }
.bg-warm-3 { background: #efe7e1; }
.bg-warm-4 { background: #ebe5de; }
.bg-warm-5 { background: #f0e6dd; }
.bg-leaf-3 { background: #e7ece6; }
.bg-warm-6 { background: #efe2da; }
.bg-leaf-4 { background: #e9efe9; }
.bg-warm-7 { background: #f1e7df; }
.bg-warm-8 { background: #efe1d8; }
.bg-leaf-5 { background: #e9efe6; }
.bg-warm-9 { background: #efe7de; }
.bg-warm-10 { background: #ede4de; }

.info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 16px;
}

.info-card h4 {
  margin: 0 0 6px;
}

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

.inline-quote {
  font-style: italic;
  color: #4b4440;
}

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

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
}

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

input,
select,
textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
}

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

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  padding: 14px 22px;
  border-radius: 999px;
  border: none;
  background: #2f2a27;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.sticky-cta:hover {
  background: #4b4440;
}

footer {
  background: #201d1a;
  color: #f5f1ed;
  padding: 40px 6vw;
}

footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

footer a {
  color: #f4d8c6;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d3c9c2;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  display: none;
  z-index: 60;
}

.cookie-banner p {
  margin: 0 0 12px;
  color: var(--muted);
}

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

.cookie-actions button {
  flex: 1;
}

.page-hero {
  display: flex;
  min-height: 40vh;
}

.page-hero .panel {
  padding: 48px 6vw;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.table th,
.table td {
  border-bottom: 1px solid var(--line);
  padding: 12px 6px;
  text-align: left;
}

.notice {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 16px;
}

@media (max-width: 900px) {
  .split,
  .hero,
  .page-hero {
    flex-direction: column;
  }

  .panel.card {
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
