* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2a2e;
  background: #f7f6f2;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.header {
  padding: 26px 6vw 10px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  background: #e6efe9;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 40px 6vw 10px;
  position: relative;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.hero-copy p {
  margin-bottom: 18px;
}

.hero-media {
  flex: 1 1 320px;
  background: #d7e3e1;
  border-radius: 28px;
  overflow: hidden;
  min-height: 320px;
  position: relative;
  margin-top: 30px;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1f4f4a;
  color: #ffffff;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.btn-secondary {
  background: #e2d8c8;
  color: #1f2a2e;
}

.section {
  padding: 60px 6vw;
  position: relative;
}

.section-light {
  background: #ffffff;
}

.section-ink {
  background: #101b1d;
  color: #f3f4f2;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.offset-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.offset-card {
  flex: 1 1 300px;
  background: #f0ece4;
  padding: 28px;
  border-radius: 20px;
  position: relative;
}

.offset-card.shift {
  margin-top: 40px;
}

.mt-18 {
  margin-top: 18px;
}

.bg-sage-1 {
  background-color: #cfe0dd;
}

.bg-sage-2 {
  background-color: #d5e2df;
}

.bg-sage-3 {
  background-color: #d6deda;
}

.bg-sage-4 {
  background-color: #cbd7d3;
}

.bg-sage-5 {
  background-color: #2b3a3c;
}

.bg-sage-6 {
  background-color: #162427;
}

.bg-sage-7 {
  background-color: #d9e4e1;
}

.bg-sage-8 {
  background-color: #dce5e2;
}

.bg-sage-9 {
  background-color: #d7dfdb;
}

.bg-sage-10 {
  background-color: #dbe3df;
}

.bg-sage-11 {
  background-color: #d4dedc;
}

.bg-sage-12 {
  background-color: #d2dfdc;
}

.bg-sage-13 {
  background-color: #cdd9d5;
}

.bg-sage-14 {
  background-color: #d4e0dd;
}

.bg-sage-15 {
  background-color: #d3dfdc;
}

.bg-sage-16 {
  background-color: #d6e1de;
}

.offset-media {
  flex: 1 1 320px;
  background: #d8dee2;
  border-radius: 24px;
  overflow: hidden;
  min-height: 260px;
}

.offset-media img {
  width: 100%;
  height: 100%;
}

.split-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-item {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.split-item.reverse {
  flex-direction: row-reverse;
}

.split-item .text {
  flex: 1 1 260px;
}

.split-item .image {
  flex: 1 1 260px;
  background: #cfdad6;
  border-radius: 18px;
  overflow: hidden;
  min-height: 200px;
}

.cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card .card-image {
  background: #dde6e3;
  border-radius: 16px;
  overflow: hidden;
  min-height: 140px;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.note {
  font-size: 13px;
  opacity: 0.8;
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.form-box {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
}

.form-box label {
  font-size: 13px;
  display: block;
  margin-bottom: 6px;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ccd3d1;
  font-size: 14px;
}

.form-box textarea {
  resize: vertical;
  min-height: 110px;
}

.form-aside {
  flex: 1 1 260px;
  background: #1f4f4a;
  color: #ffffff;
  padding: 26px;
  border-radius: 20px;
}

.form-aside ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.footer {
  padding: 40px 6vw 60px;
  background: #0f1719;
  color: #c9d4d2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.disclaimer {
  font-size: 12px;
  max-width: 680px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: #ffffff;
  color: #1f2a2e;
  border-radius: 18px;
  padding: 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 40px 6vw 20px;
}

.page-hero h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.list-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-card {
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.list-card strong {
  min-width: 200px;
}

.legal-block {
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
}

@media (max-width: 860px) {
  .hero-copy h1 {
    font-size: 30px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
