* {
  box-sizing: border-box;
}

:root {
  --bg: #f8f6f2;
  --dark: #1f1d1a;
  --muted: #6b655e;
  --accent: #b86b3e;
  --soft: #ece6de;
  --card: #ffffff;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  padding: 24px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  padding: 80px 6%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  max-width: 520px;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  border: 1px solid #ffffff;
}

.section {
  padding: 70px 6%;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1 1 320px;
}

.split-content h2,
.split-content h3 {
  margin-top: 0;
}

.split-media {
  background: var(--soft);
  padding: 18px;
  border-radius: 18px;
}

.media-cream {
  background-color: #efe9e1;
}

.media-sand {
  background-color: #e7dfd6;
}

.media-ivory {
  background-color: #f1e9df;
}

.media-tan {
  background-color: #efe6dc;
}

.card-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  background: var(--card);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 24px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.muted {
  color: var(--muted);
}

.highlight {
  background: var(--soft);
  border-radius: 18px;
  padding: 32px;
}

.form-block {
  background: #ffffff;
  border-radius: 20px;
  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: 1px solid #d6d0c8;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  padding: 40px 6%;
  background: #1f1d1a;
  color: #f4f0ea;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #cfc8bf;
  margin-top: 16px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 9;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  color: var(--dark);
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #ffffff;
}

.cookie-reject {
  background: var(--soft);
  color: var(--dark);
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
}

.bg-showroom {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-lighting-wall {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  background: #ffffff;
  color: var(--dark);
  border-radius: 999px;
  font-size: 0.85rem;
}

.notice {
  padding: 24px;
  border-radius: 16px;
  background: #fffaf2;
  border: 1px solid #eddac7;
}

.text-light {
  color: #ffffff;
}

@media (max-width: 840px) {
  .hero {
    padding: 60px 6%;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
