* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1d1d1b;
  background: #f7f4f0;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1d1d1b;
  text-decoration: underline;
}

header {
  background: #efe9e2;
  border-bottom: 1px solid #ddd4c7;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  background: #1d1d1b;
  color: #f7f4f0;
  padding: 4px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  background-image: url("https://images.unsplash.com/photo-1633655442432-620aa55d7ac1?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 6%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(21, 18, 15, 0.45);
}

.hero-content {
  position: relative;
  max-width: 640px;
  color: #f7f4f0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: #d6a15b;
  color: #1d1d1b;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

.section {
  padding: 70px 6%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.alt {
  background: #efe9e2;
}

.section.split {
  flex-direction: row;
  gap: 40px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split-text,
.split-media {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-card {
  background: #dcd2c5;
  padding: 12px;
  border-radius: 8px;
}

.badge {
  display: inline-flex;
  padding: 4px 12px;
  background: #1d1d1b;
  color: #f7f4f0;
  border-radius: 999px;
  font-size: 0.8rem;
  width: fit-content;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  border: 1px solid #e0d6c8;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote {
  font-style: italic;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e0d6c8;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.service-select-button {
  margin-top: auto;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid #cfc4b5;
  border-radius: 4px;
  font-size: 1rem;
}

button {
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1d1d1b;
  color: #f7f4f0;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.sticky-cta button {
  background: transparent;
  color: inherit;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.footer {
  background: #1d1d1b;
  color: #f7f4f0;
  padding: 40px 6%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f7f4f0;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid #e0d6c8;
  padding: 16px;
  border-radius: 10px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 25;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.soft-bg {
  background: #dcd2c5;
  border-radius: 10px;
  padding: 18px;
}

.wide-image {
  background: #cbbba9;
  border-radius: 12px;
  overflow: hidden;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e0d6c8;
  max-width: 520px;
}

.spaced {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.inline-cta {
  font-weight: 600;
}

.note {
  font-size: 0.9rem;
  color: #5b544c;
}

.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid #1d1d1b;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: center;
  }
}
