* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1f1c;
  --muted: #5f6a61;
  --leaf: #2f5d3b;
  --stone: #f2f0ea;
  --sun: #d6b36c;
  --clay: #b86c4f;
  --mist: #e7ece9;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 24px 6vw 12px;
  background: #ffffff;
}

.top-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--mist);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--leaf);
}

.hero {
  padding: 36px 6vw 24px;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.hero-copy h1 {
  font-size: 2.6rem;
  margin: 0;
}

.hero-copy p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.hero-visual {
  flex: 1 1 320px;
  min-height: 320px;
  border-radius: 24px;
  background-color: #d7dfd8;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

[data-bg] {
  background-size: cover;
  background-position: center;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.2), transparent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--leaf);
  color: #ffffff;
}

.btn-secondary {
  border-color: var(--leaf);
  color: var(--leaf);
  background: transparent;
}

.btn:focus,
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

.section {
  padding: 50px 6vw;
  position: relative;
}

.section-light {
  background: var(--stone);
}

.section-mist {
  background: var(--mist);
}

.section h2 {
  margin-top: 0;
}

.asym-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.offset-block {
  flex: 1 1 280px;
  padding: 24px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(27, 31, 28, 0.08);
  margin-top: -28px;
}

.image-frame {
  flex: 1 1 280px;
  border-radius: 20px;
  overflow: hidden;
  background: #d7dfd8;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(27, 31, 28, 0.06);
}

.service-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
}

.service-price {
  font-weight: 700;
  color: var(--clay);
}

.split-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.split-highlight .copy-block {
  flex: 1 1 300px;
}

.split-highlight .stacked-notes {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.note {
  padding: 18px;
  border-left: 4px solid var(--leaf);
  background: #ffffff;
  border-radius: 12px;
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-card {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(27, 31, 28, 0.06);
}

.form-card label {
  display: block;
  font-weight: 600;
  margin-top: 12px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border-radius: 10px;
  border: 1px solid #cfd7d1;
  font: inherit;
}

.form-card textarea {
  min-height: 90px;
  resize: vertical;
}

.form-helper {
  color: var(--muted);
  font-size: 0.9rem;
}

.service-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.service-choice button {
  border: 1px solid var(--leaf);
  background: transparent;
  color: var(--leaf);
  border-radius: 12px;
  padding: 12px 16px;
  cursor: pointer;
}

.service-choice button:hover,
.service-choice button:focus {
  background: var(--leaf);
  color: #ffffff;
}

.footer {
  padding: 40px 6vw 80px;
  background: #0e1511;
  color: #ffffff;
  margin-top: auto;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer a {
  color: #ffffff;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d2d8d3;
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 6vw;
  background: rgba(14, 21, 17, 0.95);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  z-index: 30;
}

.sticky-cta a {
  color: #0e1511;
  background: var(--sun);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 90px;
  background: #ffffff;
  color: var(--ink);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--leaf);
  background: transparent;
  color: var(--leaf);
  cursor: pointer;
}

.cookie-actions button.primary {
  background: var(--leaf);
  color: #ffffff;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding: 12px 14px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(27, 31, 28, 0.06);
}

.table-row span {
  flex: 1 1 180px;
}

.legal-text {
  max-width: 820px;
  line-height: 1.7;
  color: var(--muted);
}

.hero-badge {
  background: var(--sun);
  color: #0e1511;
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.section-title-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: baseline;
  justify-content: space-between;
}

.list-tight {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.list-tight li {
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(27, 31, 28, 0.05);
}

.inline-link {
  color: var(--leaf);
  font-weight: 600;
  text-decoration: underline;
}

.thanks-box {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(27, 31, 28, 0.08);
  max-width: 720px;
}

.contact-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(27, 31, 28, 0.08);
}

.contact-card p {
  margin: 8px 0;
}

@media (max-width: 860px) {
  .hero-copy h1 {
    font-size: 2.1rem;
  }

  .offset-block {
    margin-top: 0;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
