*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 6%;
  background: #ffffff;
  border-bottom: 1px solid #e5e0d8;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 15px;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #c85c3d;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

main {
  overflow: hidden;
}

.section {
  padding: 64px 6%;
}

.section.alt {
  background: #ffffff;
}

.section.dark {
  background: #202020;
  color: #f6f2ed;
}

.section.accent {
  background: #f0ebe3;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content {
  flex: 1;
  min-width: 0;
}

.split-visual {
  flex: 1;
  min-width: 0;
  position: relative;
}

.split-visual .overlay-card {
  position: absolute;
  bottom: -18px;
  left: 20px;
  background: #ffffff;
  padding: 18px 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  max-width: 240px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #c85c3d;
  font-weight: 600;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  font-weight: 700;
}

h1 {
  font-size: 38px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 20px;
}

p {
  margin: 0 0 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 28px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: #c85c3d;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(200, 92, 61, 0.3);
}

.btn.secondary {
  background: transparent;
  border-color: #c85c3d;
  color: #c85c3d;
}

.btn.dark {
  background: #1a1a1a;
  color: #ffffff;
}

.btn:hover {
  transform: translateY(-2px);
}

.inline-link {
  color: #c85c3d;
  font-weight: 600;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.stat {
  background: #ffffff;
  padding: 12px 16px;
  border-left: 3px solid #c85c3d;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid #e5e0d8;
}

.service-row:last-child {
  border-bottom: none;
}

.service-price {
  background: #f0ebe3;
  padding: 18px 22px;
  border-radius: 12px;
  align-self: flex-start;
  font-weight: 600;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.process-item {
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid #e5e0d8;
}

.quote {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  border-left: 4px solid #c85c3d;
}

.form-panel {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d8d0c5;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.form-note {
  font-size: 13px;
  color: #6b6257;
}

.footer {
  padding: 40px 6%;
  background: #151515;
  color: #e5e0d8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #c85c3d;
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(200, 92, 61, 0.4);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 340px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0ebe3;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.grid-split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-block {
  background: #f0ebe3;
  padding: 22px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.highlight-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(200, 92, 61, 0.12), transparent);
}

.highlight-block > * {
  position: relative;
}

.map-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #e5e0d8;
}

.legal-content {
  max-width: 800px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 900px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 32px;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .stats {
    flex-direction: row;
  }

  .service-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .process-list {
    flex-direction: row;
  }

  .grid-split {
    flex-direction: row;
  }
}
