* {
  box-sizing: border-box;
}

:root {
  --cream: #f7f4ef;
  --sand: #e9e1d6;
  --forest: #1f3a2e;
  --olive: #5f6b53;
  --clay: #c9b29b;
  --charcoal: #2a2a2a;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
}

img {
  object-fit: cover;
}

a {
  color: var(--forest);
  text-decoration: none;
}

header {
  padding: 24px 6vw 12px;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  background: var(--sand);
  border-radius: 999px;
  color: var(--forest);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 40px 6vw 80px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?w=1400&q=80") center/cover no-repeat;
  opacity: 0.18;
  z-index: 0;
}

.hero-content,
.hero-aside {
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1 1 360px;
  padding-right: 20px;
}

.hero-aside {
  flex: 1 1 280px;
  align-self: flex-end;
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.hero-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  background-color: var(--clay);
}

.media-block {
  background: var(--sand);
  padding: 16px;
  border-radius: 18px;
}

.section {
  padding: 72px 6vw;
  position: relative;
}

.section--offset {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.section--offset .text-block {
  flex: 1 1 320px;
}

.section--offset .media-block {
  flex: 1 1 280px;
  margin-top: 40px;
}

.section--overlap {
  background: var(--sand);
  padding-top: 90px;
}

.overlap-card {
  margin-top: -120px;
  background: var(--white);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  flex: 1 1 200px;
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
}

.service-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 220px;
  background: var(--white);
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  background-color: var(--clay);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.cta-button.secondary {
  background: var(--olive);
}

.cta-link {
  font-weight: 600;
}

.form-section {
  background: var(--white);
  padding: 32px;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-form label {
  font-weight: 600;
  font-size: 14px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--clay);
  font-size: 14px;
  background: var(--cream);
}

.lead-form button {
  align-self: flex-start;
}

.divider {
  height: 2px;
  background: var(--sand);
  margin: 32px 0;
}

.footer {
  padding: 40px 6vw 60px;
  background: var(--forest);
  color: var(--white);
}

.footer a {
  color: var(--white);
}

.footer-columns {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 200px;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 10;
}

.sticky-cta button {
  padding: 8px 12px;
  border-radius: 999px;
  border: none;
  background: var(--forest);
  color: var(--white);
  cursor: pointer;
  font-size: 12px;
}

.sticky-cta .close-sticky {
  background: var(--sand);
  color: var(--forest);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal);
  color: var(--white);
  padding: 16px 6vw;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-banner button {
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 12px;
}

.cookie-banner .accept {
  background: var(--sand);
  color: var(--charcoal);
}

.cookie-banner .reject {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.hidden {
  display: none;
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  padding: 48px 6vw 32px;
  background: var(--sand);
}

.page-hero img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  background-color: var(--clay);
}

.page-content {
  padding: 40px 6vw 80px;
}

.legal-card {
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.reference-list a {
  color: var(--white);
}

@media (max-width: 720px) {
  .sticky-cta {
    left: 16px;
    right: 16px;
  }
}
