* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2a24;
  --muted: #5b6a62;
  --sand: #f4f1ea;
  --leaf: #2f6b4f;
  --sage: #d8e3db;
  --stone: #e6e1d7;
  --charcoal: #2b2f2c;
  --white: #ffffff;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 18px 0;
  border-bottom: 1px solid var(--stone);
  background: var(--white);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.6px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  padding: 4px 8px;
  background: var(--sand);
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--sand);
}

.section.sage {
  background: var(--sage);
}

.section.stone {
  background: var(--stone);
}

.split {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.media {
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
}

.media.small {
  min-height: 220px;
}

.hero {
  background: var(--sand);
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-card {
  background: var(--white);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(31, 42, 36, 0.08);
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-bottom: 16px;
}

p {
  margin-bottom: 14px;
  color: var(--muted);
}

.tagline {
  font-size: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--leaf);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-weight: 600;
  gap: 8px;
}

.button.outline {
  background: transparent;
  border: 1px solid var(--leaf);
  color: var(--leaf);
}

.inline-link {
  color: var(--leaf);
  font-weight: 600;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-row {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.card {
  flex: 1 1 240px;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--charcoal);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.list span {
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 8px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
}

.form-card {
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(31, 42, 36, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  color: var(--charcoal);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  font-size: 15px;
}

.cta-band {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.cta-overlay {
  background: rgba(31, 42, 36, 0.72);
  padding: 48px;
  border-radius: 18px;
}

.footer {
  padding: 40px 0;
  background: var(--charcoal);
  color: var(--white);
}

.footer a {
  color: var(--white);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
}

.footer small {
  color: #d6d6d6;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
}

.sticky-cta button {
  box-shadow: 0 8px 20px rgba(31, 42, 36, 0.18);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 30;
  max-width: 620px;
  width: calc(100% - 40px);
  box-shadow: 0 10px 30px rgba(31, 42, 36, 0.12);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  background: var(--sand);
}

.page-hero .media {
  min-height: 240px;
}

.about-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.services-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1452626038306-9aae5e071dd3?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.contact-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.note {
  font-size: 14px;
  color: var(--muted);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.service-item {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--stone);
}

.service-item .media {
  flex: 1 1 280px;
  min-height: 220px;
}

.service-item .text {
  flex: 1 1 320px;
  padding: 22px;
}

.legal-card {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 18px;
  padding: 22px;
}

@media (max-width: 860px) {
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
