* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f4ef;
  --ink: #1f2a24;
  --muted: #5a6b62;
  --accent: #2f6f4f;
  --accent-dark: #1f4f38;
  --surface: #ffffff;
  --sand: #efe7dc;
  --leaf: #e3efe6;
  --shadow: 0 12px 30px rgba(22, 35, 29, 0.12);
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

header {
  padding: 24px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero {
  display: flex;
  align-items: stretch;
  gap: 32px;
  padding: 24px 6% 80px;
}

.hero-visual {
  flex: 1;
  background-color: #d7e6df;
  border-radius: 28px;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-copy {
  flex: 1.05;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-copy h1 {
  font-size: 2.8rem;
  line-height: 1.15;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 72px 6%;
  position: relative;
}

.section.muted {
  background: var(--sand);
}

.section.leaf {
  background: var(--leaf);
}

.section.bg-coast {
  background-image: url("https://images.unsplash.com/photo-1470770841072-f978cf4d019e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f7f2;
}

.section.bg-forest {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f7f2;
}

.section.bg-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 26, 0.55);
  z-index: 0;
}

.section.bg-overlay > * {
  position: relative;
  z-index: 1;
}

.section h2 {
  font-size: 2.1rem;
  margin-bottom: 18px;
}

.asym-grid {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.asym-grid.reverse {
  flex-direction: row-reverse;
}

.asym-block {
  flex: 1;
  min-width: 260px;
}

.offset-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  transform: translateY(-24px);
}

.image-frame {
  background-color: #e4ede6;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-preview {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 18px;
  flex: 1;
  min-width: 220px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  background-color: #dfe9e2;
}

.metrics {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.metric {
  flex: 1;
  min-width: 180px;
  background: var(--surface);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-marker {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 7px;
}

.form-wrapper {
  background: var(--surface);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.form-wrapper form {
  flex: 1.2;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrapper label {
  font-weight: 600;
}

.form-wrapper input,
.form-wrapper select,
.form-wrapper textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cdd8d1;
  font-size: 1rem;
}

.form-note {
  flex: 1;
  min-width: 200px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 20;
}

footer {
  padding: 40px 6% 60px;
  background: #1e2a24;
  color: #f7f7f2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

footer a {
  color: #f7f7f2;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.legal-disclaimer {
  font-size: 0.9rem;
  color: #c6d1c8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f2a24;
  color: #f7f7f2;
  padding: 18px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  background: #f7f7f2;
  color: #1f2a24;
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.page-hero {
  padding: 54px 6% 28px;
}

.page-hero h1 {
  font-size: 2.4rem;
}

.content-columns {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.content-columns .column {
  flex: 1;
  min-width: 240px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  background: var(--surface);
  padding: 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.contact-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.note {
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
