/* Base */
:root {
  --bg: #f6f4f1;
  --ink: #231f1a;
  --muted: #6f675f;
  --accent: #9d5c3d;
  --accent-dark: #7e452b;
  --cream: #fffaf3;
  --stone: #e9e3dc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  filter: brightness(0.95);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

header {
  padding: 24px 0 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 320px;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--cream);
}

.section.stone {
  background: var(--stone);
}

.section.bg-living {
  background: linear-gradient(120deg, rgba(246, 244, 241, 0.92), rgba(255, 250, 243, 0.92)),
    url("https://images.unsplash.com/photo-1493666438817-866a91353ca9?w=1400&q=80") center/cover no-repeat;
}

.section.bg-textile {
  background: linear-gradient(110deg, rgba(255, 250, 243, 0.94), rgba(233, 227, 220, 0.88)),
    url("https://images.unsplash.com/photo-1501876725168-00c445821c9e?w=1400&q=80") center/cover no-repeat;
}

.section.bg-kitchen {
  background: linear-gradient(120deg, rgba(255, 250, 243, 0.92), rgba(233, 227, 220, 0.88)),
    url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80") center/cover no-repeat;
}

.section-title {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  margin: 0 0 12px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 24px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
}

.image-wrap {
  background: #d9d1c7;
  border-radius: 18px;
  overflow: hidden;
}

.hero {
  padding: 80px 0 72px;
  background: linear-gradient(120deg, rgba(255, 250, 243, 0.95), rgba(246, 244, 241, 0.9)),
    url("https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1400&q=80") center/cover no-repeat;
}

.hero-card {
  background: rgba(255, 255, 255, 0.92);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(25, 21, 16, 0.08);
  max-width: 560px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  padding: 12px 22px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: white;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn.dark {
  background: var(--accent-dark);
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: white;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(31, 26, 20, 0.08);
}

.card img {
  border-radius: 12px;
  background: #e5ddd3;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
}

.badge {
  background: var(--stone);
  padding: 8px 12px;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.9rem;
}

.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.story-grid .pane {
  flex: 1 1 260px;
}

.testimonial {
  background: white;
  padding: 18px;
  border-radius: 16px;
  border-left: 4px solid var(--accent);
}

.form-wrap {
  background: white;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(30, 25, 19, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d6cfc6;
  font-size: 1rem;
  background: #fff;
}

textarea {
  min-height: 120px;
}

.footer {
  background: #1e1a16;
  color: #f6f2ec;
  padding: 40px 0 64px;
  margin-top: auto;
}

.footer a {
  color: #f1d5c2;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-columns .col {
  flex: 1 1 200px;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  background: white;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 10;
}

.sticky-cta span {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: white;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.tag {
  font-size: 0.8rem;
  color: var(--muted);
}

.two-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-columns .block {
  flex: 1 1 280px;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.references {
  font-size: 0.9rem;
  color: #f0e6dc;
}

@media (max-width: 800px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    width: calc(100% - 32px);
    justify-content: space-between;
  }
}
