* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2326;
  --muted: #5c6368;
  --paper: #f6f4f0;
  --paper-deep: #efe9e1;
  --accent: #2f6d59;
  --accent-soft: #cfe4d8;
  --stone: #d7d0c7;
  --highlight: #fff4d8;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: background 0.2s ease;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: #26323c;
}

.button:hover {
  background: #235345;
}

.button.secondary:hover {
  background: #141b22;
}

.text-link {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.site-header {
  padding: 24px 6vw 12px;
}

.nav-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  background: var(--highlight);
  border-radius: 999px;
  color: var(--muted);
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 0 6vw 80px;
}

.hero {
  min-height: 420px;
  border-radius: 32px;
  padding: 48px;
  display: flex;
  align-items: flex-end;
  background-color: #2f3f3a;
  background-image: linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15)),
    url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-content {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
}

.hero p {
  font-size: 18px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mag-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.col-wide {
  flex: 2 1 380px;
}

.col-narrow {
  flex: 1 1 220px;
}

.paper-block {
  background: var(--paper-deep);
  padding: 24px;
  border-radius: 20px;
}

.image-frame {
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
}

.frame-sm {
  height: 180px;
}

.frame-md {
  height: 260px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.map-section {
  background-color: #3b4b4c;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.25)),
    url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 40px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-section {
  background-color: #e6e1d9;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.65)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 36px;
  border-radius: 26px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(15, 20, 25, 0.08);
}

.service-price {
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.testimonial {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border-left: 4px solid var(--accent);
}

.lead-form {
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lead-form label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 15px;
}

.lead-form textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  background: var(--paper-deep);
  padding: 32px 6vw 50px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer small {
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 20px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 380px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(10, 12, 14, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
}

.cookie-actions .reject {
  background: #d6dde4;
  color: #1f2326;
}

.page-hero {
  padding: 36px;
  border-radius: 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-hero .image-frame {
  height: 260px;
}

@media (max-width: 900px) {
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }

  .hero {
    padding: 32px;
  }
}

@media (max-width: 720px) {
  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 360px;
  }
}
