* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b2a1f;
  --muted: #5b6b60;
  --accent: #2f6f4e;
  --accent-2: #8aa07a;
  --surface: #f4f6f1;
  --paper: #ffffff;
  --sand: #e9e3d5;
  --leaf: #dce7d8;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 1.5rem 0;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
  position: relative;
}

.hero-bg {
  background: var(--leaf);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  min-height: 320px;
}

.hero-bg img {
  width: 100%;
  height: 100%;
}

.hero-copy {
  max-width: 620px;
  background: var(--paper);
  padding: 2rem;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(18, 34, 25, 0.1);
  margin-top: -3rem;
  align-self: flex-start;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.inline-link {
  padding: 0.75rem 0;
}

.asym-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 4rem;
  align-items: center;
}

.asym-section.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 320px;
  min-width: 260px;
}

.asym-media {
  flex: 1 1 320px;
  min-width: 260px;
  background: var(--sand);
  border-radius: 24px;
  overflow: hidden;
}

.offset-card {
  background: var(--paper);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(18, 34, 25, 0.08);
  margin-top: -2.5rem;
  margin-left: 2rem;
}

.services-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  flex: 1 1 240px;
  min-width: 220px;
  background: var(--paper);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: 0 18px 40px rgba(18, 34, 25, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-media {
  background: var(--leaf);
  border-radius: 16px;
  overflow: hidden;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.split-callout {
  background: var(--accent);
  color: #fff;
  padding: 2.5rem;
  border-radius: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  margin-top: 4rem;
}

.split-callout a {
  color: #fff;
  text-decoration: underline;
}

.form-section {
  background: var(--paper);
  padding: 2.5rem;
  border-radius: 28px;
  margin-top: 4rem;
  box-shadow: 0 22px 50px rgba(18, 34, 25, 0.08);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1 1 240px;
}

input,
select,
textarea {
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  border: 1px solid #d5dcd1;
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  background: var(--sand);
  padding: 1.5rem;
  border-radius: 22px;
  position: sticky;
  top: 1.5rem;
}

.layered-band {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(120deg, var(--leaf), var(--surface));
  border-radius: 28px;
}

.band-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.band-image {
  flex: 1 1 300px;
  background: var(--sand);
  border-radius: 22px;
  overflow: hidden;
}

.footer {
  margin-top: 4rem;
  padding: 3rem 1.5rem;
  background: #111b14;
  color: #eef2ed;
}

.footer a {
  color: #d7e4d5;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-col {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  max-width: 360px;
  background: var(--paper);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(18, 34, 25, 0.18);
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cookie-actions button.secondary {
  background: var(--accent-2);
}

.simple-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.legal-block {
  margin-top: 2rem;
  background: var(--paper);
  padding: 1.8rem;
  border-radius: 20px;
}

.image-frame {
  background: var(--leaf);
  border-radius: 20px;
  overflow: hidden;
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}
