* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f1f1f;
  background: #f8f6f2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #1f1f1f;
  color: #fff;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  padding: 36px 0 20px;
}

.hero-copy {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  flex: 1 1 360px;
  background: #d9cbbf;
  border-radius: 20px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid #1f1f1f;
  background: #1f1f1f;
  color: #fff;
  font-size: 14px;
}

.btn.secondary {
  background: transparent;
  color: #1f1f1f;
}

.btn:hover {
  opacity: 0.9;
}

.section {
  padding: 40px 0;
}

.section.alt {
  background: #efe8de;
}

.section.dark {
  background: #1f1f1f;
  color: #fff;
}

.section-title {
  font-size: 24px;
  margin-bottom: 16px;
}

.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.story-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 230px;
}

.story-card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  background: #cbbcad;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1f1f1f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split > div {
  flex: 1 1 320px;
}

.image-frame {
  background: #d8c9bb;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.quote {
  font-style: italic;
  line-height: 1.6;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.pricing-item strong {
  font-size: 16px;
}

.inline-cta {
  text-decoration: underline;
  font-weight: 600;
}

.form-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #b9b1a6;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  width: 100%;
  background: #1f1f1f;
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 12px 0;
  z-index: 2;
}

.footer {
  padding: 30px 0 40px;
  font-size: 13px;
  color: #4b4640;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.disclaimer {
  margin-top: 14px;
  font-size: 12px;
}

.cookie-banner {
  position: fixed;
  inset: auto 20px 20px 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  max-width: 520px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 12px;
  background: #f2ebe0;
  font-size: 12px;
}

.legal-page {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 260px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  background: #d2c4b5;
}

.service-card .btn {
  align-self: flex-start;
}

.hero-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
}
