* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  --ink: #1e1c18;
  --muted: #5c584f;
  --sand: #f5f1ea;
  --stone: #d8cfc1;
  --accent: #cb7b48;
  --accent-dark: #9b5b33;
  --olive: #8c9475;
  --night: #2b2a26;
}

body {
  background: #fcfbf9;
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

header {
  padding: 2.5rem 6vw 1.5rem;
}

.split-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.brand-block span {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-block h1 {
  font-size: 1.7rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: #f0eae1;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 1rem 6vw 3rem;
}

.hero-intro {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  background: var(--sand);
  padding: 2.5rem;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.hero-intro::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 55%;
  height: 140%;
  background: rgba(203, 123, 72, 0.12);
  border-radius: 50%;
}

.hero-intro h2 {
  font-size: 2.4rem;
  line-height: 1.1;
  max-width: 26rem;
}

.hero-intro p {
  max-width: 34rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn {
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent-dark);
  color: var(--accent-dark);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
}

.hero-image .badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.7rem 1rem;
  border-radius: 14px;
  font-size: 0.9rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.section {
  padding: 3rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section.alt {
  background: #f7f3ee;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 42rem;
}

.section-heading h3 {
  font-size: 1.9rem;
}

.section-heading p {
  color: var(--muted);
}

.split-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split-block .panel {
  background: #fff;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(30, 28, 24, 0.08);
}

.offset-strip {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.6rem;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #eee3d8;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.image-row {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.quote {
  background: var(--night);
  color: #fff;
  padding: 2rem;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote span {
  color: #c8c1b7;
  font-size: 0.9rem;
}

.form-wrap {
  background: #fff;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(30, 28, 24, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid #ded7ce;
  font-size: 1rem;
  font-family: inherit;
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: sticky;
  top: 1rem;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(203, 123, 72, 0.14);
  align-self: flex-start;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer {
  padding: 3rem 6vw;
  background: var(--night);
  color: #f5f1ea;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer a {
  color: inherit;
}

.cookie-banner {
  position: fixed;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  background: #fff;
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 20px 40px rgba(30, 28, 24, 0.18);
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 20;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.page-hero {
  padding: 2rem 6vw 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.page-hero h2 {
  font-size: 2.1rem;
}

.stacked-columns {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid #ece3d9;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-box {
  background: #f5f1ea;
  padding: 1.8rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-intro {
    flex: 1.1;
  }

  .hero-image {
    flex: 0.9;
  }

  .split-block {
    flex-direction: row;
  }

  .split-block .panel {
    flex: 1;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 1.5rem);
  }

  .image-row {
    flex-direction: row;
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
  }

  .stacked-columns {
    flex-direction: row;
  }

  .info-card {
    flex: 1;
  }
}
