* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1a1d1c;
  --muted: #4a5350;
  --soft: #f3f4f2;
  --accent: #2f6b4f;
  --accent-dark: #214c39;
  --sand: #efe8dd;
  --forest: #1c2f27;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 5vw;
  border-bottom: 1px solid #e1e6e2;
  background: #ffffff;
}

.top-bar .brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.top-bar .ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.top-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  padding: 8vh 5vw 9vh;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  background-color: #1b2a23;
}

.hero.bg-hero-forest {
  background-image: url("https://images.pexels.com/photos/3860928/pexels-photo-3860928.jpeg");
}

.hero.bg-hero-about {
  background-image: url("https://images.pexels.com/photos/37678724/pexels-photo-37678724.jpeg");
}

.hero.bg-hero-services {
  background-image: url("https://images.pexels.com/photos/31791616/pexels-photo-31791616.jpeg");
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.7));
}

.hero-content {
  position: relative;
  max-width: 650px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  margin: 0 0 16px;
  line-height: 1.1;
}

.hero p {
  margin: 0 0 22px;
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 30px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent-dark);
}

.section {
  padding: 70px 5vw;
}

.section.light {
  background: var(--soft);
}

.section.sand {
  background: var(--sand);
}

.section.dark {
  background: var(--forest);
  color: #ffffff;
}

.mag-row {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.mag-main {
  flex: 1 1 360px;
}

.mag-side {
  flex: 1 1 240px;
}

.tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.card-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.image-frame {
  border-radius: 16px;
  overflow: hidden;
  background-color: #dbe3dd;
}

.image-frame img {
  width: 100%;
  height: 240px;
}

.inline-image {
  background-color: #ccd6cf;
  border-radius: 20px;
  overflow: hidden;
}

.inline-image img {
  width: 100%;
  height: 320px;
}

.quote {
  padding: 24px;
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  margin-top: 18px;
}

.form-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 16px;
  border-radius: 12px;
  border: 1px solid #ccd6cf;
  font-family: inherit;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 50px 5vw;
  background: #101513;
  color: #dfe6e1;
}

.footer .footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer a {
  color: #dfe6e1;
}

.disclaimer {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #c4cec8;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 40px;
  padding: 10px 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 20;
}

.sticky-cta span {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.list-clean {
  margin: 0;
  padding-left: 18px;
}

.legal-block {
  max-width: 820px;
}

.split-block {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.split-block .block {
  flex: 1 1 280px;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.block {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.info-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

.muted {
  color: var(--muted);
}

.section-bg {
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.section-bg.bg-forest-canopy {
  background-image: url("https://images.pexels.com/photos/16589662/pexels-photo-16589662.jpeg");
}

.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 28, 23, 0.6);
}

.section-bg .section-inner {
  position: relative;
}

@media (max-width: 860px) {
  .top-bar {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
    justify-content: space-between;
  }
}
