* {
  box-sizing: border-box;
}

:root {
  --ink: #1a1a1a;
  --muted: #5a5a5a;
  --bg: #f7f5f1;
  --accent: #1f4e8c;
  --accent-dark: #153a67;
  --sand: #efe7db;
  --graphite: #2a2f36;
  --soft: #f1f3f6;
  --card: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 6vw;
  background: var(--card);
  border-bottom: 1px solid #e4e1dc;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 220px;
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section--tight {
  padding-top: 32px;
  padding-bottom: 32px;
}

.section--sand {
  background: var(--sand);
}

.section--dark {
  background: var(--graphite);
  color: #f8f8f8;
}

.section--soft {
  background: var(--soft);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split > * {
  flex: 1 1 320px;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 680px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  color: var(--accent-dark);
  text-decoration: underline;
}

.image-wrap {
  background: #d9d2c6;
  padding: 6px;
  border-radius: 14px;
}

.image-cover {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  background: var(--card);
  border-radius: 12px;
  padding: 20px;
  flex: 1 1 220px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e3e3e3;
}

.card.dark {
  background: #1e2329;
  color: #f1f1f1;
  border-color: #2c3239;
}

.service-price {
  font-weight: 700;
  font-size: 1.1rem;
}

.quote {
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 14px;
  color: var(--muted);
}

.form-wrap {
  background: var(--card);
  border-radius: 16px;
  padding: 26px;
  border: 1px solid #e0ddd8;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #cfcac3;
  font-size: 1rem;
  font-family: inherit;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-pill {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 8px 14px;
  border-radius: 20px;
  background: transparent;
  cursor: pointer;
}

.service-pill.active {
  background: var(--accent);
  color: #fff;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-dark);
  color: #fff;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 30px;
  font-weight: 600;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border: 1px solid #d4d4d4;
  padding: 16px;
  border-radius: 10px;
  display: none;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: #111;
  color: #e7e7e7;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #e7e7e7;
  text-decoration: none;
}

.meta-line {
  font-size: 0.9rem;
  color: #b6b6b6;
}
