* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d1f24;
  --muted: #5a6472;
  --accent: #2c6b6f;
  --accent-dark: #1f4b4e;
  --sand: #f3efe8;
  --mist: #eef2f4;
  --paper: #ffffff;
  --shadow: 0 18px 40px rgba(20, 25, 35, 0.08);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  padding: 24px 6vw 12px;
  background: var(--paper);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 280px;
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: var(--mist);
}

.section.sand {
  background: var(--sand);
}

.section.with-bg {
  position: relative;
  color: #1d1f24;
}

.section.with-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.section.with-bg .split,
.section.with-bg .text,
.section.with-bg .media {
  position: relative;
  z-index: 1;
}

.bg-insight::before {
  background-image: url("https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?w=1400&q=80");
}

.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 360px;
  min-width: 280px;
}

.split .media {
  flex: 1 1 360px;
  min-width: 280px;
}

.media-frame {
  background: #d5dde3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
}

h1, h2, h3 {
  line-height: 1.2;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(32px, 4vw, 48px);
}

h2 {
  font-size: clamp(26px, 3vw, 34px);
}

h3 {
  font-size: 22px;
}

p {
  margin-bottom: 16px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn.outline {
  background: transparent;
  color: var(--accent);
}

.btn.outline:hover {
  background: var(--accent);
  color: #fff;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.pill-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(44, 107, 111, 0.12);
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 600;
}

.split-card {
  background: var(--paper);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.cards-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 220px;
  background: var(--paper);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.service-card .content {
  padding: 18px;
}

.price-tag {
  font-weight: 700;
  color: var(--accent-dark);
  margin-top: 10px;
}

.form-panel {
  background: var(--paper);
  padding: 28px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input, select, textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cdd4da;
  font-size: 15px;
}

.inline-testimonial {
  padding: 16px;
  border-left: 3px solid var(--accent);
  background: rgba(44, 107, 111, 0.08);
  margin: 18px 0;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.site-footer {
  padding: 40px 6vw 80px;
  background: #11181c;
  color: #dce1e6;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.footer-links a {
  color: #dce1e6;
}

.disclaimer {
  font-size: 13px;
  color: #aeb6bf;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(17, 24, 28, 0.92);
  padding: 12px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  z-index: 50;
}

.sticky-cta p {
  color: #e2e8ee;
  margin: 0;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 64px;
  background: #fdfbf7;
  border-top: 1px solid #d6dde3;
  padding: 16px 6vw;
  display: none;
  z-index: 60;
}

.cookie-banner.active {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.simple-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.simple-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.simple-list span {
  color: var(--accent-dark);
  font-weight: 700;
}

.contact-block {
  background: var(--paper);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.spacer {
  height: 18px;
}

@media (max-width: 840px) {
  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
