* {
  box-sizing: border-box;
}

:root {
  --bg: #f5f7f2;
  --ink: #20312a;
  --muted: #5a6b63;
  --accent: #2f7a5c;
  --accent-2: #4c8b74;
  --card: #ffffff;
  --sand: #e6ece3;
  --forest: #1f4f3a;
  --sun: #f5d38b;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  padding: 18px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  background: var(--card);
  border-bottom: 1px solid #dde5dc;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid #d1dbd2;
  padding: 4px 8px;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 8vh 6vw 10vh;
  background: #1c2b24;
  color: #f5f7f2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-6bKpHAun4d8?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  max-width: 560px;
  z-index: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button {
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.button.alt {
  background: #fff;
  color: var(--accent);
  border: 1px solid #d4ded6;
}

.section {
  padding: 7vh 6vw;
  position: relative;
}

.section.light {
  background: var(--card);
}

.section.sand {
  background: var(--sand);
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1 1 320px;
}

.offset-card {
  background: var(--card);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-24px);
}

.image-frame {
  border-radius: 24px;
  overflow: hidden;
  background-color: #d9e4db;
}

.inline-image {
  border-radius: 16px;
  overflow: hidden;
  background-color: #dfe9e0;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: var(--card);
  padding: 20px;
  border-radius: 18px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.card .price {
  font-weight: 600;
  color: var(--forest);
}

.cta-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--forest);
  color: #f7f3ec;
  padding: 26px;
  border-radius: 22px;
}

.form-section {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

select,
input,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ced8cf;
  font-size: 15px;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  padding: 6vh 6vw;
  background: #1e2c26;
  color: #dfe7e0;
}

.footer a {
  color: #dfe7e0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-col {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 13px;
  color: #c2cdc5;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--sun);
  color: #5a3c12;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 360px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #e5e9e4;
}

.legal-hero {
  background-size: cover;
  background-position: center;
  color: #f7f3ec;
  padding: 10vh 6vw;
  position: relative;
}

.legal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 28, 22, 0.55);
}

.legal-hero h1,
.legal-hero p {
  position: relative;
  z-index: 1;
}

.legal-hero.privacy {
  background-image: url("https://images.unsplash.com/photo-eOcyhe5-9sQ?w=1400&q=80");
}

.legal-hero.gdpr {
  background-image: url("https://images.unsplash.com/photo-9dmycbFE7mQ?w=1400&q=80");
}

.legal-hero.cookies {
  background-image: url("https://images.unsplash.com/photo-IGfIGP5ONV0?w=1400&q=80");
}

.legal-hero.terms {
  background-image: url("https://images.unsplash.com/photo-LwH5vLC2z1k?w=1400&q=80");
}

.thanks-hero {
  background: url("https://images.unsplash.com/photo-3tYZjGSBwbk?w=1400&q=80") center/cover;
  color: #fff;
  padding: 10vh 6vw;
  position: relative;
}

.thanks-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 27, 22, 0.5);
}

.thanks-hero h1,
.thanks-hero p {
  position: relative;
  z-index: 1;
}

.asym-banner {
  background: url("https://images.unsplash.com/photo-m3m-lnR90uM?w=1400&q=80") center/cover;
  border-radius: 28px;
  padding: 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.asym-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 32, 26, 0.5);
}

.asym-banner .banner-content {
  position: relative;
  z-index: 1;
}

.service-hero {
  background: url("https://images.unsplash.com/photo-1Z2niiBPg5A?w=1400&q=80") center/cover;
  padding: 10vh 6vw;
  color: #fff;
  position: relative;
}

.service-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 38, 31, 0.55);
}

.service-hero h1,
.service-hero p {
  position: relative;
  z-index: 1;
}

.contact-hero {
  background: url("https://images.unsplash.com/photo-LNRyGwIJr5c?w=1400&q=80") center/cover;
  color: #fff;
  padding: 10vh 6vw;
  position: relative;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 30, 25, 0.55);
}

.contact-hero h1,
.contact-hero p {
  position: relative;
  z-index: 1;
}

.about-hero {
  background: url("https://images.unsplash.com/photo-jFCViYFYcus?w=1400&q=80") center/cover;
  color: #fff;
  padding: 10vh 6vw;
  position: relative;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 36, 28, 0.55);
}

.about-hero h1,
.about-hero p {
  position: relative;
  z-index: 1;
}

.section-divider {
  height: 3px;
  width: 120px;
  background: var(--accent-2);
  margin: 18px 0;
}

.muted {
  color: var(--muted);
}

.reference-list a {
  color: #dfe7e0;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
  }
}
