* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1f1f;
  background: #f6f4f1;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: #f6f4f1;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-mark {
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 12px;
  color: #6f5a3e;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav a {
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
}

.nav a:hover,
.nav a:focus {
  border-bottom-color: #7a6042;
}

.section {
  padding: 70px 6vw;
}

.section-muted {
  background: #efe9e2;
}

.section-dark {
  background: #2f2a25;
  color: #f4f1ed;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .visual {
  flex: 1 1 320px;
}

.hero-visual,
.section-visual {
  min-height: 320px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  background-color: #d6c8b3;
}

.section-visual.tall {
  min-height: 380px;
}

.hero-kitchen {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
}

.visual-tools {
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=800&q=80");
}

.visual-woodgrain {
  background-image: url("https://images.unsplash.com/photo-1472220625704-91e1462799b2?w=800&q=80");
}

.visual-form {
  background-image: url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae?w=800&q=80");
}

.visual-about {
  background-image: url("https://images.unsplash.com/photo-1472224371017-08207f84aaae?w=800&q=80");
}

.visual-workshop {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=800&q=80");
}

.visual-services {
  background-image: url("https://images.unsplash.com/photo-1471879832106-c7ab9e0cee23?w=800&q=80");
}

.visual-contact {
  background-image: url("https://images.pexels.com/photos/17436321/pexels-photo-17436321.jpeg");
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #7a6042;
}

h1,
h2,
h3 {
  margin: 12px 0;
  line-height: 1.2;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 20px;
}

p {
  line-height: 1.7;
  margin: 14px 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: #7a6042;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.light {
  background: #f4f1ed;
  color: #2f2a25;
}

.btn.outline {
  background: transparent;
  border: 1px solid #7a6042;
  color: #7a6042;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.image-frame {
  border-radius: 16px;
  overflow: hidden;
  background-color: #d9cdbd;
}

.card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-frame.neutral {
  background-color: #b9a488;
}

.card img {
  width: 100%;
  height: 180px;
}

.price-tag {
  font-weight: 700;
  color: #7a6042;
}

.quote {
  padding: 18px 22px;
  border-left: 3px solid #7a6042;
  background: #fff;
  border-radius: 12px;
}

.form-shell {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.form-shell form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbb9a0;
  font-family: inherit;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
  color: #7a6042;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 10;
}

.sticky-cta button {
  padding: 12px 18px;
}

.footer {
  padding: 50px 6vw 70px;
  background: #1f1b17;
  color: #f4f1ed;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer a {
  color: #f4f1ed;
  text-decoration: underline;
}

.legal-note {
  font-size: 12px;
  color: #cbb9a0;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  padding: 18px;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.simple-list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.7;
}

.info-block {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .sticky-cta {
    right: 12px;
  }
}
