* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1e1c1b;
  background: #f6f4f1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sidebar {
  background: #141312;
  color: #fef9f3;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.02rem;
}

.brand span {
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: normal;
  color: #d8c8b8;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-cta {
  margin-top: auto;
  padding: 16px;
  background: #f5b42a;
  color: #2b1d06;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  top: 16px;
}

.sticky-cta a {
  background: #2b1d06;
  color: #fff4d8;
  padding: 10px 14px;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
}

main {
  flex: 1;
}

.section {
  padding: 48px 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.alt {
  background: #fffaf4;
}

.section.dark {
  background: #1f1d1b;
  color: #fef6ed;
}

.hero {
  background: linear-gradient(120deg, rgba(20, 19, 18, 0.92), rgba(20, 19, 18, 0.4)),
    url("https://images.unsplash.com/photo-1466978913421-dad2ebd01d17?auto=format&fit=crop&w=1600&q=80")
      center/cover;
  color: #fffaf4;
  min-height: 60vh;
  justify-content: center;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  margin: 0;
}

.hero p {
  max-width: 560px;
  line-height: 1.6;
}

.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button.primary {
  background: #f5b42a;
  color: #2b1d06;
}

.button.secondary {
  border: 1px solid #f5b42a;
  color: #fffaf4;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(24, 20, 16, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  height: 160px;
  object-fit: cover;
}

.quote {
  font-size: 1.1rem;
  line-height: 1.6;
  background: #fef0d1;
  padding: 20px;
  border-radius: 16px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  border: 1px solid #d8d0c8;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-item .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #8c5b0a;
}

.form-shell {
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 16px 30px rgba(20, 18, 15, 0.08);
}

.form-shell label {
  font-weight: 600;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc7bf;
  font-size: 1rem;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #e1d8cf;
  background: #fff7ea;
}

.service-option input {
  margin-top: 3px;
}

.image-strip {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.image-strip img {
  border-radius: 16px;
  height: 180px;
  object-fit: cover;
}

.footer {
  padding: 28px 22px;
  background: #141312;
  color: #fef9f3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer a {
  color: #f5b42a;
  font-size: 0.92rem;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #1f1d1b;
  color: #fef6ed;
  padding: 16px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #f5b42a;
  color: #2b1d06;
}

.cookie-reject {
  background: #35322f;
  color: #fef6ed;
}

.inline-cta {
  color: #8c5b0a;
  font-weight: 600;
  text-decoration: underline;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

@media (min-width: 900px) {
  .site-shell {
    flex-direction: row;
  }

  .sidebar {
    width: 260px;
    min-height: 100vh;
  }

  .section {
    padding: 60px 60px;
  }

  .split {
    flex-direction: row;
  }

  .card-row {
    flex-direction: row;
  }

  .image-strip {
    flex-direction: row;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item {
    width: calc(50% - 8px);
  }
}
