* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1d1f;
  --muted: #5b5f66;
  --accent: #2f5bea;
  --accent-soft: #e9efff;
  --sand: #f6f2ec;
  --fog: #f4f6f8;
  --leaf: #1f6f54;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw 12px;
  background: #ffffff;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-toggle {
  border: 1px solid var(--ink);
  background: transparent;
  padding: 6px 14px;
  font-size: 0.9rem;
  cursor: pointer;
}

.nav-compact {
  display: none;
  width: 100%;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 4px 10px;
  border: 1px solid var(--fog);
  background: var(--fog);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px 6vw 56px;
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 25, 0.58);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.15;
}

.hero p {
  font-size: 1.05rem;
  color: #f1f1f1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 24px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: #ffffff;
  color: var(--ink);
}

.section {
  padding: 56px 6vw;
  position: relative;
}

.section.alt {
  background: var(--fog);
}

.section.sand {
  background: var(--sand);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.text-block {
  flex: 1 1 320px;
  min-width: 280px;
}

.text-block h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  margin-bottom: 12px;
}

.text-block p {
  margin-bottom: 12px;
  color: var(--muted);
}

.image-wrap {
  flex: 1 1 320px;
  min-height: 260px;
  background: #dbe3f4;
  border-radius: 18px;
  overflow: hidden;
}

.offset-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(19, 30, 54, 0.12);
  margin-top: -36px;
  max-width: 520px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 210px;
}

.card-image {
  min-height: 160px;
  background: #e3e7ef;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--leaf);
}

.callout {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--accent-soft);
  padding: 24px;
  border-radius: 18px;
  max-width: 520px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
}

.form-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 18px 38px rgba(22, 35, 60, 0.12);
  max-width: 560px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid #cdd6e1;
  border-radius: 12px;
  font-size: 1rem;
}

.site-footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: #0f1b2d;
  color: #d7dde6;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-grid a {
  color: #d7dde6;
}

.legal {
  font-size: 0.85rem;
  color: #a3acb8;
  margin-top: 16px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--leaf);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 22px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(20, 40, 30, 0.2);
  z-index: 20;
}

.background-panel {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.background-panel .text-block p {
  color: #f1f1f1;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 340px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 38px rgba(18, 32, 56, 0.2);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  background: #ffffff;
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #d7dde6;
}

.contact-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(20, 30, 45, 0.1);
  max-width: 520px;
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

  .nav-compact {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .offset-card {
    margin-top: 0;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
