* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d1f1c;
  --olive: #4f6b3a;
  --moss: #6e8b55;
  --sand: #f6f2ea;
  --clay: #d7c9b0;
  --pebble: #f0f4ef;
  --mist: #e7ece7;
  --accent: #2f6b4a;
  --shadow: rgba(14, 20, 12, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 18px 0;
  background: var(--sand);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  background: var(--mist);
  padding: 6px 12px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  background: var(--pebble);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1465101162946-4377e57745c3?w=1400&q=80")
    center/cover no-repeat;
  opacity: 0.92;
}

.hero-content {
  position: relative;
  padding: 120px 0 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  max-width: 520px;
  background: rgba(255, 255, 255, 0.86);
  padding: 28px 30px;
  border-radius: 20px;
  box-shadow: 0 12px 30px var(--shadow);
}

.hero-text h1 {
  font-size: 2.7rem;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.floating-note {
  background: rgba(255, 255, 255, 0.9);
  padding: 18px 20px;
  border-radius: 16px;
  max-width: 260px;
  align-self: flex-start;
  margin-top: -40px;
  box-shadow: 0 12px 30px var(--shadow);
}

.section {
  padding: 80px 0;
}

.section-muted {
  background: var(--mist);
}

.section-contrast {
  background: var(--sand);
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split-reverse {
  flex-direction: row-reverse;
}

.offset-panel {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 14px 30px var(--shadow);
  margin-top: -40px;
}

.image-wrap {
  background: var(--clay);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 32px var(--shadow);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 12px 26px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
}

.service-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.service-card button {
  margin-top: auto;
  align-self: flex-start;
}

.selected {
  outline: 2px solid var(--accent);
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.step {
  flex: 1 1 200px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 20px var(--shadow);
}

.form-shell {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 34px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c7d3c7;
  font: inherit;
}

textarea {
  min-height: 110px;
}

.form-note {
  font-size: 0.9rem;
  color: #8c2f2f;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  background: var(--pebble);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.footer {
  padding: 60px 0 80px;
  background: #1f261e;
  color: #f8f6f0;
}

.footer a {
  color: inherit;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  flex: 1 1 220px;
}

.legal-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #fff;
  box-shadow: 0 12px 26px var(--shadow);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 26px var(--shadow);
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
}

.cookie-actions button.reject {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.page-hero {
  padding: 80px 0 50px;
  background: var(--pebble);
}

.page-hero h1 {
  font-size: 2.4rem;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 0;
}

.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 12px 26px var(--shadow);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.citation-list {
  font-size: 0.85rem;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .split,
  .split-reverse {
    flex-direction: column;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
