* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2a24;
  --muted: #55605a;
  --sand: #f4f1ed;
  --leaf: #c9d6cd;
  --sun: #f6d39d;
  --glass: #d8e2eb;
  --accent: #2e6a5f;
  --accent-soft: #e2efe8;
  --night: #0f1c1f;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 6vw 10px;
  background: var(--sand);
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--accent-soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 32px 6vw 96px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
}

.hero-title {
  font-size: 42px;
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: var(--night);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: var(--night);
  border-color: var(--night);
}

.image-frame {
  background: var(--glass);
  border-radius: 18px;
  overflow: hidden;
  padding: 6px;
}

.image-frame img {
  border-radius: 14px;
  height: 100%;
}

.band {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--accent-soft);
  border-radius: 24px;
  padding: 24px;
}

.band-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.asym-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(16, 32, 24, 0.08);
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(17, 30, 24, 0.08);
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  font-weight: 600;
}

.price {
  color: var(--accent);
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 26px;
  border-radius: 24px;
  box-shadow: 0 12px 36px rgba(16, 32, 24, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd8d2;
  font-size: 15px;
  background: #fff;
}

.split-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-panel .panel-copy {
  background: var(--sun);
  padding: 22px;
  border-radius: 20px;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 50px;
  background: #ebe6e0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 6vw;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.sticky-cta button {
  background: #fff;
  color: var(--accent);
  border: none;
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #d5d7d6;
  color: #333;
}

.section-title {
  font-size: 28px;
}

.muted {
  color: var(--muted);
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
}

.image-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 860px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-row,
  .asym-row,
  .split-panel {
    flex-direction: row;
  }

  .hero-row {
    align-items: center;
  }

  .hero-copy {
    flex: 1;
  }

  .hero-visual {
    flex: 1;
  }

  .asym-row .offset-card {
    flex: 1;
  }

  .service-cards {
    flex-direction: row;
  }

  .service-card {
    flex: 1;
  }

  .split-panel .panel-copy {
    flex: 1.1;
  }

  .split-panel .image-frame {
    flex: 0.9;
  }

  .image-strip {
    flex-direction: row;
  }

  .image-strip .image-frame {
    flex: 1;
  }
}
