* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2a2e;
  --muted: #5a6a72;
  --sand: #f2efe9;
  --clay: #e6ded2;
  --moss: #2f5d50;
  --sun: #d4a24f;
  --mist: #f7f6f3;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 8vw;
  background: var(--mist);
}

.brand {
  font-weight: 600;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--sun);
  color: #1a1a1a;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 32px 8vw 64px;
  position: relative;
}

.hero-copy {
  flex: 1 1 320px;
  padding-right: 16px;
}

.hero-visual {
  flex: 1 1 320px;
  position: relative;
}

.hero-visual .image-card {
  height: 360px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--clay);
}

.hero-visual .accent-card {
  position: absolute;
  bottom: -32px;
  left: -24px;
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  max-width: 220px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 600;
  transition: all 0.2s ease;
}

.cta.primary {
  background: var(--ink);
  color: #fff;
}

.cta.secondary {
  background: transparent;
}

.cta:hover {
  transform: translateY(-2px);
}

.section {
  padding: 64px 8vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.section.alt {
  background: var(--sand);
}

.section.background-1 {
  background-image: url("https://images.unsplash.com/photo-1508921912186-1d1a45ebb3c1?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: var(--sand);
  background-blend-mode: soft-light;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 300px;
}

.panel.offset {
  margin-top: -24px;
}

.panel.surface {
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.image-card {
  border-radius: 24px;
  overflow: hidden;
  background: var(--clay);
}

.split-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--moss);
}

.quote {
  background: #fff;
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.07);
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 320px;
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c9c4bb;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

textarea {
  min-height: 120px;
}

.inline-link {
  color: var(--moss);
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--sun);
  color: #1a1a1a;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  z-index: 10;
  font-weight: 600;
}

.footer {
  margin-top: auto;
  padding: 32px 8vw;
  background: #1f2a2e;
  color: #f1f1f1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #f1f1f1;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-weight: 600;
}

.cookie-button.accept {
  background: var(--ink);
  color: #fff;
}

.page-header {
  padding: 48px 8vw 24px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-block {
  background: #fff;
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
