* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2430;
  --muted: #5b6371;
  --sand: #f4f0ea;
  --clay: #d8c7b4;
  --stone: #e7eef2;
  --accent: #3e6b73;
  --accent-dark: #2b4c52;
  --warm: #c47a4a;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  background: var(--stone);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

header {
  padding: 28px 0 12px;
}

.nav-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.95rem;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links a:hover {
  background: var(--sand);
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 240px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 48px 0 70px;
  position: relative;
}

.hero-panel {
  background: var(--sand);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
  position: relative;
  z-index: 2;
}

.hero-visual {
  margin-top: -120px;
  padding: 22px;
  background: var(--stone);
  border-radius: 28px;
  align-self: flex-end;
  width: min(720px, 90vw);
}

.hero-visual img {
  width: 100%;
  height: 380px;
  border-radius: 22px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--clay);
  font-size: 0.85rem;
  color: var(--ink);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cta-spaced {
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.btn:hover {
  background: var(--accent-dark);
}

.btn.secondary:hover {
  background: var(--accent-dark);
  color: var(--white);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.section {
  padding: 60px 0;
}

.section.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.split-row > div {
  flex: 1 1 280px;
}

.offset-card {
  background: var(--white);
  border-radius: 22px;
  padding: 26px;
  margin-top: -40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--sand);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card img {
  height: 180px;
  width: 100%;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.callout {
  background: var(--accent);
  color: var(--white);
  padding: 26px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.callout a {
  text-decoration: underline;
}

.image-frame {
  background: var(--clay);
  padding: 16px;
  border-radius: 22px;
}

.image-frame img {
  width: 100%;
  height: 320px;
  border-radius: 18px;
}

.bg-slab {
  background: var(--stone);
  position: relative;
}

.bg-hero {
  background: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1400&q=80") center/cover no-repeat;
}

.bg-process {
  background: url("https://images.unsplash.com/photo-1523413651479-597eb2da0ad6?w=1400&q=80") center/cover no-repeat;
  color: var(--white);
}

.bg-cta {
  background: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80") center/cover no-repeat;
  color: var(--white);
}

.bg-overlay {
  background: rgba(0, 0, 0, 0.45);
  border-radius: 24px;
  padding: 36px;
}

.form-wrap {
  background: var(--white);
  padding: 26px;
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

select,
input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d1d6db;
  font-size: 1rem;
  font-family: inherit;
}

.testimonial {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.testimonial img {
  width: 140px;
  height: 140px;
  border-radius: 18px;
  background: var(--stone);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer {
  padding: 40px 0 70px;
  background: var(--sand);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid > div {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  max-width: 360px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.muted {
  color: var(--muted);
}

.legal-note {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 820px) {
  .hero-visual {
    margin-top: 0;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
