* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f4f1;
  --ink: #1d1c1a;
  --muted: #5b5752;
  --accent: #2f4b3f;
  --accent-2: #b07d3c;
  --soft: #ece6df;
  --card: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

header {
  padding: 28px 6vw 16px;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-size: 14px;
  color: var(--muted);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}

.ad-label {
  font-size: 12px;
  color: var(--accent);
  padding: 4px 8px;
  border: 1px solid var(--accent);
  border-radius: 999px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 6vw 70px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 320px;
  background: var(--card);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .panel.image-panel {
  padding: 0;
  overflow: hidden;
  background: #d7d1c8;
}

.panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 12px;
  color: var(--accent-2);
}

h1, h2, h3 {
  line-height: 1.2;
}

h1 {
  font-size: 38px;
}

h2 {
  font-size: 28px;
}

.muted {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.button.alt {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button.light {
  background: var(--accent-2);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stat {
  flex: 1 1 160px;
  background: var(--soft);
  padding: 18px;
  border-radius: 14px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 260px;
  background: var(--card);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  background: #d7d1c8;
}

.wide-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  background: #d7d1c8;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.section-soft {
  background: var(--soft);
  border-radius: 18px;
  padding: 28px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-grid .service {
  flex: 1 1 280px;
  background: var(--card);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  background: #d7d1c8;
}

.form-wrap {
  background: var(--card);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input, select, textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c2b9;
  font-size: 15px;
  background: #fff;
}

footer {
  background: #1c1b19;
  color: #f5f2ee;
  padding: 32px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer a {
  color: #f5f2ee;
  text-decoration: underline;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hidden {
  display: none;
}

.note {
  font-size: 14px;
  color: var(--muted);
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
