* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --text: #1b1b1d;
  --muted: #5b5f66;
  --accent: #1f5c4c;
  --accent-2: #8a6b2f;
  --bg: #f7f4ef;
  --bg-2: #e9efe9;
  --bg-3: #f0f0f4;
  --card: #ffffff;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  background: var(--bg-3);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ad-disclosure {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 18px;
  padding: 10px 6vw 22px;
}

.nav a {
  font-size: 0.95rem;
  color: var(--muted);
}

.section {
  padding: 64px 6vw;
}

.section.alt {
  background: var(--bg-2);
}

.section.dark {
  background: #121514;
  color: #f2f2f2;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
  min-width: 280px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent-2);
  margin-bottom: 12px;
}

h1, h2, h3 {
  line-height: 1.2;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
}

p {
  color: var(--muted);
  margin-bottom: 14px;
}

.hero-card {
  background: var(--card);
  padding: 28px;
  border-left: 4px solid var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.image-frame {
  background: #d9d2c7;
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
}

.card-image {
  border-radius: 0;
  min-height: 180px;
}

.section.bg-image {
  background-image: url("https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section.bg-image .hero-card {
  background: rgba(255, 255, 255, 0.9);
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.card-body {
  padding: 18px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

.quote {
  background: #ffffff;
  border-left: 4px solid var(--accent-2);
  padding: 16px 20px;
  margin-bottom: 16px;
}

.form-card {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input, select, textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d2d2d6;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: #0f1213;
  color: #e5e5e5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.footer small {
  color: #b7b9bd;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1b1b1d;
  color: #f1f1f1;
  padding: 18px 6vw;
  display: none;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-3);
  color: var(--muted);
  font-size: 0.85rem;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
