:root {
  --bg: #f4f6f3;
  --bg-2: #eef1ed;
  --ink: #1f2721;
  --muted: #4b5a52;
  --accent: #2f6f54;
  --accent-2: #7bb08d;
  --card: #ffffff;
  --line: #d7ddd6;
  --shadow: 0 20px 40px rgba(23, 35, 28, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.wrapper {
  width: min(1180px, 92%);
  margin: 0 auto;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 18px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-badge {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 220px;
  text-align: right;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  position: relative;
  padding: 40px 0 60px;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
  background: var(--card);
  box-shadow: var(--shadow);
  border-radius: 24px;
  position: relative;
  z-index: 2;
}

.hero-visual {
  flex: 1 1 360px;
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  background: #dfe7e0;
  position: relative;
  top: 20px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button, .cta {
  border: none;
  padding: 12px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1rem;
}

.cta.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--bg-2);
}

.offset-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.offset-card {
  flex: 1 1 320px;
  background: var(--card);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.offset-image {
  flex: 1 1 340px;
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
  background: #dfe7e0;
  position: relative;
  top: -20px;
}

.tagline {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--card);
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  background: #dfe7e0;
}

.service-price {
  font-weight: 600;
  color: var(--accent);
}

.quote-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 26px;
  border-radius: 18px;
  background: #f8faf7;
  border: 1px solid var(--line);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.form-panel {
  flex: 1 1 320px;
  background: var(--card);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-panel.hidden {
  display: none;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input, select, textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

footer {
  padding: 40px 0 60px;
  background: #1f2721;
  color: #f0f4f1;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #f0f4f1;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.notice {
  background: #f0f4f1;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--line);
}

.split-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.gallery-item {
  flex: 1 1 220px;
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 160px;
  background: #dfe7e0;
}

@media (max-width: 860px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-badge {
    text-align: left;
  }

  .hero {
    padding-top: 20px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
