* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1f1f;
  --muted: #5f6368;
  --surface: #ffffff;
  --soft: #f4f4f2;
  --accent: #156d4a;
  --accent-strong: #0e4c34;
  --accent-soft: #d9efe4;
  --line: #e0e0dc;
  --warning: #fff7e6;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

header {
  padding: 24px 0 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.nav .brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.split {
  display: flex;
  gap: 28px;
  align-items: stretch;
  padding: 40px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.split-media {
  background: #e7efe9;
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
}

.split-media .media-frame {
  background: #dfe7e2;
  width: 100%;
  height: 100%;
  display: flex;
}

.eyebrow {
  font-size: 0.9rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.ghost {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.btn:hover {
  transform: translateY(-2px);
}

.inline-cta {
  color: var(--accent-strong);
  text-decoration: underline;
}

.panel {
  background: var(--soft);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.panel.alt {
  background: #f9f5ef;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 18px;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.service-media {
  flex: 0 0 220px;
  background: #ebe7e0;
  display: flex;
  align-items: stretch;
}

.service-body {
  flex: 1;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-strong);
}

.grid-split {
  display: flex;
  gap: 18px;
}

.grid-split .panel {
  flex: 1;
}

.form-block {
  background: var(--accent-soft);
  border-radius: 16px;
  padding: 26px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

.form-status {
  font-size: 0.95rem;
  color: var(--accent-strong);
}

.footer {
  margin-top: 40px;
  padding: 28px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  padding: 16px;
  border-radius: 12px;
  max-width: 320px;
  display: none;
  gap: 10px;
  flex-direction: column;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.section-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.layered {
  background: linear-gradient(120deg, #f7f5f2, #edf4ef);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-item {
  flex: 1;
  min-width: 240px;
  background: var(--soft);
  padding: 18px;
  border-radius: 12px;
}

.references {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .service-card {
    flex-direction: column;
  }

  .service-media {
    flex: auto;
  }

  .grid-split {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
