:root {
  --bg: #f5f1ec;
  --ink: #1f1b16;
  --muted: #5a524b;
  --accent: #46635c;
  --accent-2: #9f7e5c;
  --soft: #e7dfd6;
  --soft-2: #d7cdc1;
  --highlight: #f2e7da;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  filter: brightness(0.95);
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 6vw 10px;
}

.brand {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-name {
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.ad-label {
  background: var(--soft);
  color: var(--muted);
  padding: 6px 10px;
  font-size: 0.8rem;
  border-radius: 4px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.main-nav a {
  font-size: 0.95rem;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 10px 6vw 80px;
}

.section-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--accent-2);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: 2.4rem;
  margin: 0;
}

.hero-media {
  flex: 1 1 360px;
  position: relative;
}

.hero-frame {
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--soft-2);
}

.hero-note {
  position: absolute;
  bottom: -18px;
  left: 24px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  max-width: 260px;
  font-size: 0.9rem;
}

.asym-block {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.asym-block.reverse {
  flex-direction: row-reverse;
}

.asym-card {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  flex: 1 1 320px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.05);
}

.img-frame {
  background: var(--soft-2);
  border-radius: 16px;
  overflow: hidden;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.inline-image {
  flex: 1 1 260px;
  min-height: 260px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
}

.card-image {
  height: 180px;
}

.card-image--tall {
  height: 190px;
}

.price-tag {
  font-weight: 600;
  color: var(--accent-2);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.button.light {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.layered-panel {
  background: var(--highlight);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.layered-panel::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 60px;
  height: 60px;
  background: var(--soft);
  border-radius: 18px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.step {
  flex: 1 1 200px;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
}

.testimonial {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  flex: 1 1 260px;
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  background: var(--accent);
  color: #fff;
  padding: 26px;
  border-radius: 18px;
}

.cta-strip a {
  color: #fff;
}

.form-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.form-panel form {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-panel label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-panel select,
.form-panel input,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--soft-2);
  font-family: inherit;
}

.form-panel textarea {
  min-height: 110px;
  resize: vertical;
}

.form-side {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer {
  padding: 30px 6vw 60px;
  background: #efe9e2;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer small {
  color: var(--muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent-2);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.bg-panel {
  background-image: url('https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80');
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 22px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bg-panel .button {
  background: #fff;
  color: var(--accent);
}

.simple-layout {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 960px;
}

.list-panels {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.list-panel {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  flex: 1 1 240px;
}

@media (max-width: 760px) {
  .nav-block {
    align-items: flex-start;
  }
  .hero-note {
    position: static;
  }
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
[hidden] {
  display: none !important;
}