* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1f24;
  --muted: #5d6a75;
  --accent: #2f6b5b;
  --accent-2: #9a7c3a;
  --bg: #f6f3ef;
  --paper: #ffffff;
  --sand: #efe7dc;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  background: var(--paper);
  border-bottom: 1px solid #e5ded2;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 8%;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: #f3ede4;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 48px 8% 24px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-media {
  flex: 1 1 360px;
  background: #e8e0d6;
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 12px 18px;
  border-radius: 999px;
}

.section {
  padding: 40px 8%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 300px;
}

.panel {
  background: var(--paper);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(32, 26, 17, 0.08);
}

.image-card {
  border-radius: 18px;
  overflow: hidden;
  background: #e5ded2;
  min-height: 240px;
}

.image-card img {
  width: 100%;
  height: 100%;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--paper);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .service-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f3ede4;
  color: var(--muted);
  font-size: 0.85rem;
}

.story {
  background: var(--sand);
  border-radius: 22px;
  padding: 24px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-cta button {
  background: #fff;
  color: var(--accent);
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
}

.form-wrap {
  background: var(--paper);
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap label {
  font-weight: 600;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 10px 12px;
  border: 1px solid #d6cbbd;
  border-radius: 10px;
  font: inherit;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  margin-top: auto;
  padding: 30px 8%;
  background: #161a1d;
  color: #d1d5db;
}

.footer a {
  color: #f7d38a;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #1f2327;
  color: #f9fafb;
  padding: 18px;
  border-radius: 16px;
  display: none;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
}

.cookie-accept {
  background: #f7d38a;
  color: #1f2327;
}

.cookie-reject {
  background: transparent;
  color: #f9fafb;
  border: 1px solid #f9fafb;
}

.content-header {
  padding: 36px 8% 10px;
}

.content-header h1 {
  margin-bottom: 6px;
}

.legal {
  background: var(--paper);
  padding: 24px;
  border-radius: 18px;
}

.bg-assembly {
  background-color: #d8d1c6;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-assembly .panel {
  background: rgba(255, 255, 255, 0.9);
}

.bg-workshop {
  background-color: #d5cdc3;
  background-image: url("https://images.unsplash.com/photo-1501183638710-841dd1904471?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-wardrobe {
  background-color: #d9d2c7;
  background-image: url("https://images.unsplash.com/photo-1472220625704-91e1462799b2?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-wood {
  background-color: #d7c9ba;
  background-image: url("https://images.unsplash.com/photo-1499914485622-a88fac536970?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-room {
  background-color: #e0d9cf;
  background-image: url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-neutral {
  background-color: #e2d9cd;
  background-image: url("https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1400&q=80");
  background-size: cover;
  background-position: center;
}
