* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e1a16;
  background: #f5f1ee;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px 6vw 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffb56b, #b45327);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e6d9cf;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 10px 6vw 40px;
}

.hero-card {
  background: #11110f;
  color: #fdf4ec;
  padding: 28px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 140px;
  height: 140px;
  background: #ffb56b;
  border-radius: 50%;
  opacity: 0.7;
}

.hero-card h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-card p {
  max-width: 540px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  background: #ffb56b;
  color: #2a1c13;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #ffb56b;
  color: #ffb56b;
}

.section {
  padding: 42px 6vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section.dark {
  background: #151310;
  color: #fef3ea;
}

.section.light {
  background: #fff9f3;
}

.section.offset {
  position: relative;
}

.section.offset::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 8%;
  width: 140px;
  height: 140px;
  background: #ffd5a1;
  border-radius: 24px;
  z-index: 0;
  opacity: 0.5;
}

.section .content {
  position: relative;
  z-index: 1;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  padding: 18px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #eaded5;
}

.card.dark {
  background: #2d241d;
  color: #fff4ea;
  border-color: #2d241d;
}

.price {
  font-weight: 700;
  font-size: 1.2rem;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  border-left: 4px solid #ffb56b;
  padding-left: 18px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff9f3;
  border-radius: 24px;
  padding: 22px;
  border: 1px solid #eaded5;
}

.form-wrap label {
  font-size: 0.9rem;
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d8c7bc;
  background: #ffffff;
  font-size: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer {
  padding: 30px 6vw 50px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #0f0e0c;
  color: #f5e8df;
}

.footer a {
  color: #f5e8df;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #151310;
  color: #fff4ea;
  padding: 12px 16px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 20;
}

.sticky-cta a {
  color: #ffb56b;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #eaded5;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 25;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-title {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
}

.meta-strip {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
}

.inline-cta {
  color: #c4631d;
  font-weight: 600;
  text-decoration: underline;
}

@media (min-width: 860px) {
  .header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-card,
  .hero-image {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-grid .card {
    flex: 1 1 240px;
  }

  .form-row {
    flex-direction: row;
  }

  .form-row > div {
    flex: 1;
  }

  .meta-strip {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }
}
