* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1f1e;
  --muted: #4f5b57;
  --soft: #f3f5f2;
  --accent: #1f7a5e;
  --accent-dark: #145642;
  --sand: #ebe6db;
  --stone: #d5d9d5;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fafaf8;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

header {
  padding: 28px 6vw 12px;
  background: #ffffff;
  border-bottom: 1px solid var(--stone);
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 360px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

main {
  flex: 1;
}

.section {
  padding: 70px 6vw;
  position: relative;
}

.bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.18;
  background-color: #dfe6e2;
}

.bg-layer img {
  height: 100%;
}

.section-content {
  position: relative;
  z-index: 1;
}

.section-alt {
  background: var(--soft);
}

.section-sand {
  background: var(--sand);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 380px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 18px;
}

.hero-visual {
  flex: 1 1 320px;
  background: #e6ede9;
  padding: 18px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}

.hero-visual img {
  border-radius: 18px;
  height: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  max-width: fit-content;
}

.btn-light {
  background: #ffffff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .image-block {
  flex: 1 1 300px;
  background: #dfe6e2;
  padding: 18px;
  border-radius: 20px;
}

.offset-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.offset-grid.spaced {
  margin-top: 30px;
}

.offset-card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  top: 0;
}

.offset-card.shift {
  top: 26px;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .service-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-panel {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid #c8cec9;
  border-radius: 10px;
  font-size: 1rem;
  background: #ffffff;
}

.inline-cta {
  color: var(--accent-dark);
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 24px;
  background: #ffffff;
  border: 1px solid var(--accent-dark);
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.sticky-cta a {
  color: var(--accent-dark);
  font-weight: 600;
}

footer {
  background: #111714;
  color: #f2f5f4;
  padding: 50px 6vw 70px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

footer a {
  color: #f2f5f4;
  text-decoration: underline;
}

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #c7c7c7;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #ffffff;
}

.cookie-reject {
  background: #e6e9e7;
  color: var(--ink);
}

.page-title {
  font-size: 2.4rem;
  line-height: 1.2;
}

.subheading {
  font-size: 1.1rem;
  color: var(--muted);
}

.highlight-panel {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #e0e4e1;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-block + .contact-block {
  margin-top: 14px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 14px;
}

.list li {
  list-style: none;
  position: relative;
  padding-left: 18px;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.92rem;
  color: var(--muted);
}

.section-angled {
  background: #ffffff;
  transform: skewY(-1.5deg);
}

.section-angled > * {
  transform: skewY(1.5deg);
}

@media (max-width: 900px) {
  .sticky-cta {
    position: static;
    margin: 20px 6vw 0;
  }

  .cookie-banner {
    right: 18px;
    max-width: 90vw;
  }
}
