* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1c1f;
  background: #f6f5f2;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 24px 6vw 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  background: #1b1c1f;
  color: #f6f5f2;
  padding: 6px 10px;
  border-radius: 12px;
  align-self: flex-start;
}

main {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 10px 6vw 80px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
  min-width: 280px;
}

.panel {
  padding: 28px;
  background: #ffffff;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel.dark {
  background: #1b1c1f;
  color: #f6f5f2;
}

.panel.soft {
  background: #efece6;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
}

h1, h2, h3 {
  margin: 0;
  font-weight: 650;
}

p {
  margin: 0;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 18px;
  border-radius: 20px;
  border: 1px solid #1b1c1f;
  background: #1b1c1f;
  color: #f6f5f2;
  font-size: 14px;
  cursor: pointer;
}

.btn.light {
  background: transparent;
  color: #1b1c1f;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.image-wrap {
  background: #d6d2c7;
  border-radius: 18px;
  overflow: hidden;
}

.image-wrap img {
  width: 100%;
  height: 100%;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e1ded7;
}

.service-item span {
  font-weight: 600;
}

.pricing-note {
  font-size: 12px;
  color: #5c5f66;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-card label {
  font-size: 13px;
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c8c4ba;
  font-size: 14px;
  font-family: inherit;
}

.form-card button {
  align-self: flex-start;
}

.sticky-cta {
  position: sticky;
  top: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #e1ded7;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 6px 10px;
  border-radius: 14px;
  background: #1b1c1f;
  color: #f6f5f2;
  font-size: 12px;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #efece6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 320px;
  background: #1b1c1f;
  color: #f6f5f2;
  padding: 16px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border-radius: 16px;
  border: 1px solid #f6f5f2;
  background: transparent;
  color: #f6f5f2;
  padding: 8px 12px;
  cursor: pointer;
}

.hero-bg {
  background: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80") center/cover no-repeat;
  min-height: 320px;
  border-radius: 18px;
}

.section-bg {
  background: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80") center/cover no-repeat;
  border-radius: 18px;
  padding: 36px;
  color: #f6f5f2;
}

.muted {
  color: #5c5f66;
  font-size: 14px;
}

.two-col {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 260px;
}

.legal-block {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
}

.hero-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.small-title {
  font-size: 18px;
  font-weight: 600;
}
