@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --ink: #1c2520;
  --muted: #5a6b60;
  --accent: #2f6f4e;
  --accent-soft: #e6f0ea;
  --surface: #f7f8f6;
  --line: #d6ddd7;
  --sun: #d9e6db;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  filter: brightness(0.95);
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw 16px;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  font-size: 14px;
  color: var(--muted);
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--accent-soft);
  padding: 8px 12px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
}

.hero {
  display: flex;
  align-items: center;
  padding: 80px 6vw 90px;
  min-height: 420px;
  color: #f8fbf8;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(17, 34, 26, 0.78), rgba(17, 34, 26, 0.2));
}

.hero-content {
  position: relative;
  max-width: 520px;
  z-index: 1;
}

.hero-title {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 18px;
}

.hero-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 15px;
  color: #e2efe4;
}

.cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.btn-light {
  background: #fff;
  color: var(--accent);
}

.sticky-cta {
  position: sticky;
  top: 32px;
  align-self: flex-start;
  background: #fff;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  max-width: 220px;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.alt {
  background: #fff;
}

.section-title {
  font-size: 28px;
  margin: 0;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.split > * {
  flex: 1 1 280px;
}

.offset-block {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--line);
  transform: translateY(-24px);
}

.offset-block.right {
  transform: translateY(24px);
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.img-frame {
  background: var(--sun);
}

.img-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.quote {
  font-size: 18px;
  background: var(--accent-soft);
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
}

.form-panel {
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-size: 14px;
  color: var(--muted);
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.form-panel button {
  align-self: flex-start;
}

.tagline {
  font-size: 14px;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding: 30px 6vw;
  background: #0f1d17;
  color: #dde6de;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #d1e8d5;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 99;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hero-index {
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80") center/cover no-repeat;
}

.hero-services {
  background: url("https://images.unsplash.com/photo-1465101046530-73398c7f28ca?w=1400&q=80") center/cover no-repeat;
}

.hero-about {
  background: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80") center/cover no-repeat;
}

.bg-panel {
  background: url("https://images.unsplash.com/photo-1472214103451-9374bd1c798e?w=1400&q=80") center/cover no-repeat;
  color: #f4fff6;
  position: relative;
}

.bg-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 26, 20, 0.7);
}

.bg-panel .bg-content {
  position: relative;
  z-index: 1;
}

.legal {
  max-width: 820px;
}

.inline-highlight {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
}

.note {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-item {
  flex: 1 1 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
}

.small {
  font-size: 14px;
  color: var(--muted);
}

.thanks-panel {
  background: #fff;
  padding: 36px;
  border-radius: 16px;
  border: 1px solid var(--line);
  max-width: 600px;
}

.hidden {
  display: none;
}
