* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c2b2a;
  --muted: #4e5c5a;
  --sand: #f3f1ec;
  --moss: #d8e3da;
  --leaf: #2f6f5f;
  --sky: #e6eef1;
  --clay: #d6c7b2;
  --sun: #f5d37c;
}

body {
  font-family: "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: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.header {
  padding: 24px 6vw 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 280px;
}

.section {
  padding: 72px 6vw;
  position: relative;
}

.section-alt {
  background: var(--sand);
}

.section-moss {
  background: var(--moss);
}

.section-sky {
  background: var(--sky);
}

.section-clay {
  background: var(--clay);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  min-height: 70vh;
  padding: 64px 6vw 72px;
  background: var(--sky);
}

.hero-copy {
  flex: 1 1 380px;
  max-width: 520px;
}

.hero-image {
  flex: 1 1 320px;
  min-height: 360px;
  background: #c8d4d8;
  border-radius: 28px;
  overflow: hidden;
  transform: translateY(18px);
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--leaf);
  color: #ffffff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: var(--leaf);
  border: 2px solid var(--leaf);
}

.btn:hover,
.btn-outline:hover {
  transform: translateY(-1px);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 320px;
}

.offset-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(27, 43, 42, 0.12);
  transform: translateY(-24px);
}

.image-frame {
  background: #c8d4d8;
  border-radius: 18px;
  overflow: hidden;
}

.bg-panel {
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  min-height: 260px;
}

.insight-bg {
  background-image: url("https://images.unsplash.com/photo-1470770903676-69b98201ea1c?w=1400&q=80");
  background-color: #bcced4;
}

.about-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
  background-color: #cdd7cf;
}

.about-story-bg {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=800&q=80");
  background-color: #c9d7d1;
}

.services-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-color: #c4d0d3;
}

.contact-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1400&q=80");
  background-color: #b9cbd1;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--leaf);
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 50px rgba(27, 43, 42, 0.1);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form label {
  font-weight: 600;
  color: var(--muted);
}

.form input,
.form select,
.form textarea {
  padding: 12px 14px;
  border: 1px solid #d4d4d4;
  border-radius: 12px;
  font-size: 1rem;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #dfe2e1;
  background: #f8f7f3;
}

.service-option input {
  accent-color: var(--leaf);
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  box-shadow: 0 12px 30px rgba(27, 43, 42, 0.2);
}

.footer {
  padding: 48px 6vw 60px;
  background: #111a19;
  color: #ffffff;
}

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.footer a {
  color: #ffffff;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 16px 40px rgba(27, 43, 42, 0.15);
  max-width: 360px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.cookie-hidden {
  display: none;
}

.page-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 20px;
}

.text-muted {
  color: var(--muted);
}

.mt-24 {
  margin-top: 24px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-18 {
  margin-top: 18px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: #f0f4f2;
  font-size: 0.85rem;
}

@media (max-width: 860px) {
  .hero {
    padding-top: 40px;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
