* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f6f2;
  --ink: #1d1f1c;
  --muted: #5d635b;
  --brand: #2d5d4a;
  --accent: #c7a66a;
  --panel: #ffffff;
  --soft: #eef0ea;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--brand);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 0 6vw 80px;
}

header {
  padding: 28px 6vw 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.ad-label {
  background: #f0e6d8;
  color: #584225;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.nav-links a {
  font-size: 14px;
  color: var(--ink);
}

.nav-button {
  border: none;
  background: var(--brand);
  color: #fff;
  padding: 10px 16px;
  border-radius: 24px;
  cursor: pointer;
}

.nav-button:hover,
.button:hover,
.ghost-button:hover,
.sticky-cta:hover {
  filter: brightness(1.05);
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > .copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.split > .visual {
  flex: 1;
  background: #dde4dc;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--muted);
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--brand);
  color: #fff;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.ghost-button {
  background: transparent;
  border: 1px solid var(--brand);
  color: var(--brand);
  padding: 10px 16px;
  border-radius: 24px;
  cursor: pointer;
}

.panel {
  background: var(--panel);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 260px;
  min-width: 240px;
  background: var(--panel);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card .card-image {
  height: 180px;
  background: #d7e0d6;
}

.card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--brand);
}

.inline-cta {
  font-weight: 600;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.process-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.process-index {
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #3a2b12;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-size: 13px;
  color: var(--muted);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d6d9d0;
  font-size: 14px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.quote-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--soft);
  padding: 26px;
  border-radius: 20px;
}

.footer {
  padding: 40px 6vw 60px;
  background: #1f241f;
  color: #e9eee6;
}

.footer a {
  color: #e9eee6;
}

.footer-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 200px;
}

.disclaimer {
  font-size: 13px;
  color: #c9d0c7;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #2d2314;
  padding: 12px 18px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tagline {
  font-size: 18px;
  color: var(--muted);
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.map-panel {
  background: #dde3ea;
  min-height: 220px;
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
