* {
  box-sizing: border-box;
}

:root {
  --ink: #1e1f24;
  --muted: #5c616b;
  --paper: #f6f3ef;
  --sand: #efe6dc;
  --sage: #7b8b7b;
  --clay: #c7b3a3;
  --accent: #3d6b5a;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  padding: 20px 0;
  background: var(--white);
  border-bottom: 1px solid #e7e1da;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 70px 0 40px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 20%;
  width: 180px;
  height: 180px;
  background: var(--clay);
  opacity: 0.35;
  border-radius: 32px;
  z-index: 0;
}

.hero-content {
  flex: 1;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.hero-image {
  flex: 1;
  background: #d9d4cd;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--sand);
}

.section-title {
  font-size: 1.7rem;
  margin: 0 0 12px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block,
.split .image-block {
  flex: 1;
}

.image-block {
  background: #dcd4cc;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.offset-card {
  background: var(--white);
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07);
  position: relative;
  top: -24px;
}

.service-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.testimonial {
  background: var(--white);
  border-radius: 16px;
  padding: 18px 20px;
  margin-top: 16px;
  border-left: 4px solid var(--accent);
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 26px 30px;
  border-radius: 24px;
}

.form-shell {
  background: var(--white);
  padding: 26px;
  border-radius: 22px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

.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: 12px;
  border-radius: 12px;
  border: 1px solid #dad2ca;
  font-size: 1rem;
}

.form-grid button {
  align-self: flex-start;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--ink);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.page-hero {
  padding: 40px 0 20px;
}

.page-hero .hero-image {
  margin-top: 20px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer {
  background: var(--white);
  padding: 40px 0;
  border-top: 1px solid #e7e1da;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
  margin-top: 16px;
}

.disclaimer {
  margin-top: 22px;
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--white);
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 30;
  max-width: 320px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.img-frame {
  background: #d9d2c8;
}

@media (max-width: 900px) {
  .hero,
  .split {
    flex-direction: column;
  }

  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
