* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2a2e;
  --muted: #5a6b73;
  --sand: #f2f0ea;
  --clay: #e1d6c8;
  --sage: #dbe5dd;
  --ocean: #2f6b6f;
  --sun: #d38f3a;
  --paper: #ffffff;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 6vw 16px;
  background: var(--paper);
  border-bottom: 1px solid #e6e0d6;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 280px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 18px;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  border-color: var(--ocean);
  color: var(--ocean);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 48px 6vw 24px;
  position: relative;
}

.hero-text {
  flex: 1 1 340px;
  padding: 24px 30px;
  background: var(--sand);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(31, 42, 46, 0.08);
  margin-top: 24px;
}

.hero-text h1 {
  font-size: 34px;
  margin: 0 0 16px;
  line-height: 1.2;
}

.hero-text p {
  color: var(--muted);
  margin: 0 0 18px;
}

.hero-media {
  flex: 1 1 320px;
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--clay);
  position: relative;
  margin-left: auto;
}

.hero-media img {
  height: 100%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 22px;
  font-weight: 600;
  border: 1px solid var(--ocean);
  color: var(--paper);
  background: var(--ocean);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(47, 107, 111, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--ocean);
}

.inline-link {
  color: var(--ocean);
  text-decoration: underline;
}

.section {
  padding: 42px 6vw;
  position: relative;
}

.section-title {
  font-size: 26px;
  margin: 0 0 18px;
}

.asym-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.asym-panel {
  flex: 1 1 320px;
  padding: 24px;
  border-radius: 22px;
  background: var(--sand);
  box-shadow: 0 14px 30px rgba(31, 42, 46, 0.08);
}

.asym-panel.shift-up {
  transform: translateY(-14px);
}

.asym-panel.shift-down {
  transform: translateY(18px);
}

.image-card {
  flex: 1 1 280px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--sage);
  min-height: 260px;
}

.image-card img {
  height: 100%;
}

.service-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
  background: var(--paper);
  border: 1px solid #efe9df;
  align-items: center;
}

.service-card img {
  width: 140px;
  height: 110px;
  border-radius: 16px;
  background: var(--clay);
}

.price {
  font-weight: 700;
  color: var(--sun);
}

.offset-banner {
  background: var(--ocean);
  color: var(--paper);
  padding: 28px 30px;
  border-radius: 24px;
  max-width: 520px;
  margin-left: auto;
}

.form-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--sand);
  border-radius: 28px;
  padding: 28px;
}

.form-block form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-block label {
  font-weight: 600;
}

.form-block select,
.form-block input {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d5cbbd;
  font-size: 14px;
}

.form-note {
  flex: 1 1 240px;
  color: var(--muted);
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding: 28px 6vw 40px;
  background: #1d2629;
  color: #e6edf0;
}

.footer a {
  color: #e6edf0;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 22px;
  background: var(--sun);
  color: #1e1e1e;
  padding: 12px 16px;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 10px 26px rgba(31, 42, 46, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: var(--paper);
  border: 1px solid #e1d6c8;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 16px 40px rgba(31, 42, 46, 0.18);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  border: 1px solid var(--ocean);
  background: var(--ocean);
  color: var(--paper);
  padding: 8px 10px;
  border-radius: 14px;
  cursor: pointer;
}

.cookie-actions .btn-outline {
  background: transparent;
  color: var(--ocean);
}

.bg-housing {
  background-image: url("https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-city {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-docs {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-layer {
  padding: 48px 6vw;
  color: var(--paper);
}

.bg-layer .section-title {
  color: var(--paper);
}

.spacer {
  margin-top: 18px;
}

@media (max-width: 900px) {
  .hero {
    padding-top: 32px;
  }

  .hero-text {
    margin-top: 0;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
