* {
  box-sizing: border-box;
}

:root {
  --ink: #1a1f1c;
  --leaf: #2f5f46;
  --mist: #e7efe9;
  --sun: #d4b45a;
  --stone: #f5f2ed;
  --clay: #c7b7a1;
  --night: #24302a;
  --fog: #f2f6f3;
}

body {
  margin: 0;
  font-family: "Arial", "Helvetica", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a,
button {
  cursor: pointer;
  font: inherit;
}

a {
  color: var(--leaf);
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.9;
}

header {
  padding: 24px 6vw 8px;
  position: relative;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}

.ad-label {
  font-size: 13px;
  color: var(--night);
  background: var(--mist);
  padding: 6px 10px;
  border-radius: 999px;
  align-self: flex-start;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a,
.nav-toggle {
  background: var(--fog);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--mist);
  color: var(--ink);
}

.nav-toggle {
  background: var(--leaf);
  color: #ffffff;
  border: none;
}

.nav-hidden {
  display: none;
}

.nav-open {
  display: flex;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 24px 0 80px;
}

section {
  padding: 0 6vw;
}

.hero {
  position: relative;
  padding-top: 36px;
}

.hero-layout {
  display: flex;
  align-items: stretch;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  background: var(--mist);
  border-radius: 24px;
}

.hero-image {
  flex: 1 1 360px;
  position: relative;
  transform: translateY(18px);
}

.hero-accent {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 70%;
  height: 70%;
  background: var(--sun);
  border-radius: 24px;
  z-index: 0;
}

.image-frame {
  background: var(--stone);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame-tall {
  height: 320px;
}

.frame-small {
  width: 220px;
  height: 160px;
}

.frame-service {
  height: 180px;
}

.frame-story {
  min-height: 240px;
}

.hero-image .image-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 340px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: var(--leaf);
  color: #ffffff;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--leaf);
  color: var(--leaf);
}

.split-panel {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.offset-panel {
  flex: 1 1 280px;
  padding: 24px;
  background: var(--fog);
  border-radius: 20px;
  transform: translateX(18px);
}

.stacked-card {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 20px;
  background: var(--mist);
  position: relative;
}

.stacked-card::after {
  content: "";
  position: absolute;
  inset: 12px -12px auto auto;
  width: 80px;
  height: 80px;
  background: var(--sun);
  border-radius: 20px;
  z-index: 0;
}

.stacked-card > * {
  position: relative;
  z-index: 1;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  min-width: 240px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(20, 30, 25, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--leaf);
}

.inline-cta {
  font-weight: 600;
  color: var(--leaf);
}

.highlight-band {
  background: var(--night);
  color: #ffffff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: stretch;
}

.story-block {
  flex: 1 1 280px;
  padding: 22px;
  border-radius: 18px;
  background: var(--stone);
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 320px;
  padding: 24px;
  border-radius: 20px;
  background: var(--fog);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd7d1;
  font: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.aside-note {
  flex: 1 1 220px;
  padding: 20px;
  border-radius: 18px;
  background: var(--mist);
}

footer {
  padding: 32px 6vw 60px;
  background: var(--fog);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.disclaimer {
  font-size: 14px;
  color: #404c46;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 18px;
  z-index: 20;
  background: var(--leaf);
  color: #ffffff;
  border-radius: 999px;
  padding: 12px 16px;
  border: none;
  box-shadow: 0 16px 30px rgba(20, 30, 25, 0.25);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #d7dfd9;
  padding: 16px 6vw;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  margin-top: 16px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.page-hero .image-frame {
  flex: 1 1 300px;
  min-height: 240px;
}

.page-hero .page-copy {
  flex: 1 1 320px;
  background: var(--mist);
  padding: 20px;
  border-radius: 18px;
}

.legal-block {
  padding: 20px;
  background: var(--stone);
  border-radius: 18px;
}

.no-wrap {
  white-space: nowrap;
}

@media (max-width: 860px) {
  .hero-image {
    transform: none;
  }

  .offset-panel {
    transform: none;
  }

  .sticky-cta {
    right: 10px;
  }
}
