* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f6f2;
  --ink: #1b1c1a;
  --muted: #5a5f59;
  --accent: #2f6b4e;
  --accent-2: #8fbf8e;
  --card: #ffffff;
  --shade: #eef0ea;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  padding: 24px 6%;
  background: #fff;
  border-bottom: 1px solid #e6e5e1;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid #d6d8d0;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f3f4ef;
}

.section {
  padding: 60px 6%;
  position: relative;
}

.section.alt {
  background: var(--shade);
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 0;
  min-width: 0;
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--muted);
}

h1, h2, h3 {
  margin-top: 0;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.cta-button.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.cta-button:hover {
  filter: brightness(0.95);
}

.image-frame {
  background-color: #dfe7dc;
  border-radius: 10px;
  overflow: hidden;
}

.frame-hero {
  height: 420px;
}

.frame-short {
  height: 360px;
}

.frame-tall {
  height: 520px;
}

.frame-form {
  height: 460px;
}

.frame-medium {
  height: 400px;
}

.spaced {
  margin-top: 40px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 16px;
  align-items: center;
}

.card img {
  width: 110px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border: 1px solid #e3e6de;
}

.price {
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list button {
  background: #fff;
  border: 1px solid #cbd2c3;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.pill-list button:hover {
  border-color: var(--accent);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input, select, textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #cdd2c7;
  font-size: 14px;
  font-family: inherit;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
}

.sticky-cta button {
  padding: 10px 16px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  display: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  z-index: 30;
}

.cookie-actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

footer {
  padding: 30px 6%;
  background: #161915;
  color: #e9eee6;
}

footer a {
  color: #cfe3d1;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-columns div {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 13px;
  color: #b6c2b5;
  margin-top: 16px;
}

.two-column {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1 1 320px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
