:root {
  --bg: #0f1115;
  --bg-soft: #151923;
  --bg-light: #f6f1ea;
  --text: #1b1e23;
  --text-invert: #f6f7fb;
  --accent: #d4a373;
  --accent-dark: #9c6a3f;
  --muted: #5e6675;
  --line: #d7dadd;
}

* {
  box-sizing: border-box;
}

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

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 24px 6vw;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

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

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

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

.ad-label {
  font-size: 0.85rem;
  color: var(--accent-dark);
  background: #f7efe6;
  padding: 6px 12px;
  border-radius: 999px;
}

main {
  flex: 1;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 60px 6vw;
  align-items: center;
}

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

.split.compact {
  padding: 40px 6vw;
}

.split > div {
  flex: 1 1 320px;
}

.section-title {
  font-size: 2.2rem;
  margin: 0 0 16px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--text);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.primary {
  background: var(--text);
  color: #ffffff;
}

.button.secondary {
  background: transparent;
  color: var(--text);
}

.button:hover {
  transform: translateY(-1px);
}

.image-box {
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
}

.bg-slate { background: #c7cdd6; }
.bg-sand { background: #e9dccb; }
.bg-forest { background: #c8d6c3; }
.bg-stone { background: #d8d6d0; }
.bg-ink { background: #b8c2d1; }

.card-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
}

.card img {
  border-radius: 12px;
  height: 160px;
}

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

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

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

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

footer {
  padding: 40px 6vw 60px;
  background: var(--bg-soft);
  color: var(--text-invert);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 220px;
}

.footer-col a {
  color: var(--text-invert);
}

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

.sticky-cta a {
  background: var(--accent);
  color: #2d1f12;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  max-width: 340px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  z-index: 50;
}

.banner.hidden {
  display: none;
}

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

.banner button {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--text);
  background: #ffffff;
  cursor: pointer;
}

.banner button.accept {
  background: var(--text);
  color: #ffffff;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.notice {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 20px;
}

@media (max-width: 760px) {
  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
  header {
    padding: 20px 5vw;
  }
  .split {
    padding: 40px 5vw;
  }
  footer {
    padding: 36px 5vw 50px;
  }
}
