* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f4f0;
  --ink: #1f2a1f;
  --muted: #4b5a4b;
  --accent: #4e7a4a;
  --accent-2: #b5c6a7;
  --paper: #ffffff;
  --sand: #efe9dd;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--ink);
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.9;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6%;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--accent-2);
  padding: 6px 12px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 6% 70px;
  position: relative;
  background-color: var(--sand);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80")
    center/cover no-repeat;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 244, 240, 0.82);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 28px;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.section {
  padding: 60px 6%;
}

.section-alt {
  background: var(--paper);
}

.section-sand {
  background: var(--sand);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.image-card {
  background: #dbe3d3;
  padding: 16px;
  border-radius: 16px;
}

.image-card img {
  border-radius: 12px;
}

.floating-panel {
  background: var(--paper);
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(28, 40, 28, 0.12);
}

.grid-cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--paper);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
}

.card img {
  width: 100%;
  height: 180px;
}

.cta-inline {
  color: var(--accent);
  text-decoration: underline;
}

.form-wrap {
  background: var(--paper);
  padding: 32px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cdd5c1;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  z-index: 50;
}

.site-footer {
  background: #1d261d;
  color: #f2f2f2;
  padding: 36px 6%;
  margin-top: auto;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.footer-links a {
  color: #f2f2f2;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d6dccf;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 60;
}

.cookie-banner button {
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: var(--sand);
}

.legal-hero {
  padding: 40px 6% 20px;
}

.legal-section {
  padding: 20px 6% 60px;
}

.simple-hero {
  padding: 30px 6%;
  background: var(--sand);
}

.service-price {
  font-weight: 700;
  color: var(--accent);
}

.thankyou-box {
  background: var(--paper);
  padding: 32px;
  border-radius: 18px;
  max-width: 700px;
  margin: 20px auto 60px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-block {
  flex: 1 1 260px;
  background: var(--paper);
  padding: 22px;
  border-radius: 16px;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-bottom: 50px;
  }
}
