* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1e1e1e;
  background: #f5f3ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.topbar {
  padding: 1.5rem 0;
  background: #f5f3ef;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
}

.nav a {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-bottom-color: #1e1e1e;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  background: #1e1e1e;
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.cta-outline {
  background: transparent;
  border: 1px solid #1e1e1e;
  color: #1e1e1e;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: stretch;
  padding: 4rem 0;
}

.split--reverse {
  flex-direction: row-reverse;
}

.split__content,
.split__media {
  flex: 1 1 320px;
  min-width: 280px;
}

.split__content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: #5b5954;
}

.headline {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.15;
}

.soft-card {
  padding: 1.4rem;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.stat {
  flex: 1 1 140px;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: #ede8e1;
}

.stat strong {
  display: block;
  font-size: 1.4rem;
}

.highlight-band {
  background: #1e1e1e;
  color: #fff;
}

.highlight-band .cta-button {
  background: #f4c25c;
  color: #1e1e1e;
}

.layered {
  position: relative;
}

.layered::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 25px;
  width: 120px;
  height: 120px;
  background: #f4c25c;
  border-radius: 24px;
  z-index: -1;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-item {
  padding: 1.1rem;
  border-radius: 16px;
  background: #f7f5f1;
  border: 1px solid #ddd5c8;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1e1e1e;
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial {
  background: #fff;
  padding: 1.4rem;
  border-radius: 18px;
  border: 1px solid #e2ddd4;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid #c9c3bb;
  background: #fff;
  font-family: inherit;
}

.sticky-card {
  position: sticky;
  top: 1.5rem;
  align-self: flex-start;
  border-radius: 20px;
  background: #1e1e1e;
  color: #fff;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sticky-card .cta-button {
  background: #f4c25c;
  color: #1e1e1e;
}

.footer {
  padding: 3rem 0 2rem;
  background: #1e1e1e;
  color: #fff;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  padding: 1rem;
  display: none;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid #1e1e1e;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions button.accept {
  background: #1e1e1e;
  color: #fff;
}

.hero {
  background: linear-gradient(120deg, rgba(244, 194, 92, 0.2), rgba(245, 243, 239, 0.8)),
    url("../images/hero-build.svg") no-repeat right center;
  background-size: contain;
}

.section-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.alt-background {
  background: #ede8e1;
}

.note {
  font-size: 0.9rem;
  color: #5b5954;
}

.page-header {
  padding: 3rem 0 2rem;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 0 4rem;
}

.contact-item {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 16px;
  padding: 1.4rem;
  border: 1px solid #e1dbd2;
}

@media (max-width: 800px) {
  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .sticky-card {
    position: static;
  }
}
