* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1f1e;
  --muted: #4b5754;
  --accent: #2f6b4f;
  --accent-soft: #e7f0ea;
  --sand: #f6f1e8;
  --stone: #e0e6e3;
  --dark: #0f1a15;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  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: 22px 6vw 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 20px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.hero {
  position: relative;
  padding: 10vw 6vw 8vw;
  background-color: #2a3b33;
  background-image: url("https://images.unsplash.com/photo-1466692476868-aef1dfb1e735?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 21, 0.5);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 780px;
  z-index: 1;
}

.hero-card {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  padding: 28px 30px;
  border-radius: 20px;
  align-self: flex-start;
  max-width: 520px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  border: none;
  padding: 12px 22px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
}

.btn-light {
  background: #ffffff;
  color: var(--ink);
}

.content-block {
  padding: 70px 6vw;
  position: relative;
}

.content-block.sand {
  background: var(--sand);
}

.content-block.stone {
  background: var(--stone);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  min-width: 280px;
}

.split .media {
  flex: 1 1 320px;
  min-width: 280px;
}

.media-frame {
  background: #d8e4dc;
  padding: 10px;
  border-radius: 20px;
}

.media-frame img {
  width: 100%;
  height: 320px;
  border-radius: 14px;
}

.offset-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offset-card {
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  width: calc(100% - 30px);
}

.offset-card:nth-child(2) {
  margin-left: 20px;
}

.offset-card:nth-child(3) {
  margin-left: 40px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 180px;
}

.service-card .service-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.cta-band {
  padding: 80px 6vw;
  background-color: #314438;
  background-image: url("https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #ffffff;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 21, 0.6);
}

.cta-band .cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-panel {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd8d3;
  font-size: 14px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-row > div {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: var(--dark);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
}

.sticky-cta button {
  background: #ffffff;
  color: var(--dark);
}

.footer {
  margin-top: auto;
  padding: 40px 6vw 60px;
  background: var(--dark);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #d6dedb;
  max-width: 760px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hidden {
  display: none;
}

.simple-header {
  padding: 60px 6vw 20px;
}

.simple-section {
  padding: 30px 6vw 60px;
}

.legal-card {
  background: var(--sand);
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 720px) {
  .hero {
    padding-top: 120px;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
