@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

:root {
  --ink: #1f2421;
  --muted: #4b5550;
  --soft: #f5f3ef;
  --accent: #1e6f5c;
  --accent-dark: #145040;
  --sand: #efe6da;
  --sun: #f3d9b1;
  --stone: #e1e0dd;
  --shadow: rgba(31, 36, 33, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #faf9f6;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.header {
  padding: 24px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.92rem;
}

.ad-label {
  background: var(--sun);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  line-height: 1.2;
}

.hero {
  position: relative;
  padding: 68px 0 84px;
}

.hero-wrap {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.hero-content {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0;
}

.hero-card {
  background: var(--soft);
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: 0 18px 40px var(--shadow);
  max-width: 420px;
}

.hero-image {
  flex: 1 1 45%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
}

.hero-image .image-frame {
  width: 100%;
  max-width: 460px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--stone);
  box-shadow: 0 22px 46px var(--shadow);
  transform: translateY(18px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background-color: #d9d4cd;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--soft);
}

.section.soft {
  background: #fffdf9;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.offset-box {
  background: #fff;
  padding: 26px 28px;
  border-radius: 20px;
  box-shadow: 0 16px 34px var(--shadow);
  transform: translateY(-18px);
}

.image-frame {
  border-radius: 22px;
  overflow: hidden;
  background: var(--stone);
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.flex-1 {
  flex: 1;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.badge {
  padding: 8px 12px;
  border-radius: 18px;
  background: var(--sand);
  font-size: 0.85rem;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  gap: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 28px var(--shadow);
  align-items: center;
}

.service-card .card-image {
  width: 160px;
  height: 120px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--stone);
  flex-shrink: 0;
}

.service-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-price {
  font-weight: 700;
  color: var(--accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.light {
  background: #fff;
  color: var(--ink);
  border: 1px solid #e3e3e3;
}

.inline-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quote-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 30px var(--shadow);
}

.form-wrap {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.form-card {
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 16px 36px var(--shadow);
  flex: 1;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d8d6d2;
  font-family: inherit;
  font-size: 1rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.error {
  color: #9f2f2f;
  font-weight: 600;
  min-height: 20px;
}

.bg-photo {
  position: relative;
  color: #fff;
  background-color: #2b3430;
}

.bg-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 36, 33, 0.56);
}

.bg-photo .container {
  position: relative;
  z-index: 1;
}

.bg-photo .quote-block {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.footer {
  padding: 52px 0;
  background: #0f1b17;
  color: #e9f1ee;
}

.footer a {
  color: inherit;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #c8d4cf;
  margin-top: 18px;
}

.page-hero {
  padding: 64px 0 36px;
}

.page-hero .image-frame {
  max-width: 520px;
}

.list-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-card {
  background: #fff;
  padding: 20px 22px;
  border-radius: 18px;
  box-shadow: 0 14px 28px var(--shadow);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #fff;
  padding: 10px;
  border-radius: 32px;
  box-shadow: 0 12px 24px var(--shadow);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: 0 16px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 25;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1773579223066-4b54a17ec8cc?w=1400&q=80");
}

.bg-testimonial {
  background-image: url("https://images.unsplash.com/photo-1776935359460-6c789e972e6a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2b3430;
}


@media (max-width: 900px) {
  .hero-wrap,
  .split,
  .form-wrap,
  .service-card {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-image {
    order: -1;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: center;
  }
}
