* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2933;
  --muted: #5f6c72;
  --paper: #f6f4f0;
  --canvas: #ffffff;
  --accent: #1c6b5f;
  --accent-dark: #134a41;
  --sand: #efe7dc;
  --clay: #e2d6c7;
  --sage: #d9e6e0;
  --sun: #f4e2b8;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.img-frame {
  background: var(--clay);
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: 100%;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 5vw 12px;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--sand);
  padding: 6px 12px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
  padding: 32px 5vw 64px;
}

.hero-copy {
  flex: 1 1 320px;
  background: var(--canvas);
  padding: 32px;
  border-radius: 24px;
  align-self: center;
  position: relative;
  z-index: 2;
}

.hero-visual {
  flex: 1 1 320px;
  margin-top: 48px;
  position: relative;
}

.hero-visual .img-frame {
  border-radius: 28px;
  overflow: hidden;
  background: var(--clay);
  height: 100%;
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: var(--accent-dark);
}

.link-inline {
  color: var(--accent-dark);
  font-weight: 600;
}

.section {
  padding: 56px 5vw;
}

.section.alt {
  background: var(--canvas);
}

.section.bg-ledger {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.section.bg-ledger::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(21, 26, 31, 0.55);
}

.section.bg-ledger .content {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 18px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.split .panel {
  flex: 1 1 300px;
}

.offset-card {
  background: var(--sun);
  padding: 24px;
  border-radius: 20px;
  margin-top: 24px;
}

.image-stack {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-stack .img-frame {
  flex: 1 1 180px;
  min-height: 180px;
  background: var(--sage);
  border-radius: 18px;
  overflow: hidden;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--canvas);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card .img-frame {
  background: var(--clay);
  border-radius: 16px;
  overflow: hidden;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.form-panel {
  flex: 1 1 320px;
  background: var(--canvas);
  padding: 24px;
  border-radius: 22px;
}

.form-panel label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  margin-bottom: 16px;
  font-size: 1rem;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  background: var(--accent-dark);
  color: #fff;
  padding: 16px 20px;
  border-radius: 18px;
  align-self: flex-start;
}

.footer {
  padding: 32px 5vw 48px;
  background: var(--canvas);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-note {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 320px;
  background: var(--canvas);
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.muted {
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.banner {
  background: var(--sun);
  padding: 18px 22px;
  border-radius: 18px;
}

.map-block {
  background: var(--sand);
  padding: 22px;
  border-radius: 18px;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--accent);
}

.visual-box {
  background: var(--sage);
  border-radius: 20px;
  padding: 20px;
}

.visual-box .img-frame {
  border-radius: 16px;
  overflow: hidden;
  background: var(--clay);
}

.note {
  background: var(--paper);
  border-left: 4px solid var(--accent);
  padding: 16px;
  border-radius: 12px;
}

.spacer {
  height: 24px;
}
