* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1d1d;
  background-color: #f6f3ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 24px 6vw 16px;
  gap: 24px;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 240px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 13px;
  color: #4a4a4a;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  align-items: flex-end;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.8px;
}

.nav-links a,
.nav-links button {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 6vw 80px;
  position: relative;
  background-color: #efe9e2;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #bfb7ad;
  border-radius: 28px;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: #ffffff;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}

.hero-copy h1 {
  font-size: 42px;
  line-height: 1.15;
}

.hero-copy p {
  font-size: 18px;
  max-width: 560px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background-color: #1d1d1d;
  color: #ffffff;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background-color: transparent;
  color: #1d1d1d;
  border: 1px solid #1d1d1d;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 72px 6vw;
  position: relative;
}

.section-title {
  font-size: 30px;
  line-height: 1.2;
}

.section-lead {
  font-size: 17px;
  max-width: 620px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split > div {
  flex: 1 1 280px;
}

.offset-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-frame {
  background-color: #d9d2c8;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.timeline-step {
  min-width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #1d1d1d;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #2b3a33;
}

.section-muted {
  background-color: #f0ece7;
}

.section-contrast {
  background-color: #1d1d1d;
  color: #ffffff;
}

.section-contrast a {
  color: #ffffff;
  text-decoration: underline;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #c6c0b7;
}

.bg-process {
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #c7c2b8;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c9c2b7;
  font-size: 15px;
  font-family: inherit;
}

.form-note {
  font-size: 13px;
  color: #555555;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background-color: #ffffff;
  border-top: 1px solid #e3ded6;
  padding: 14px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 3;
}

.sticky-cta p {
  font-size: 14px;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background-color: #efe9e2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-note {
  font-size: 13px;
  color: #4b4b4b;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  max-width: 320px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 4;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.btn-accept {
  background-color: #1d1d1d;
  color: #ffffff;
}

.btn-reject {
  background-color: #e6e0d7;
  color: #1d1d1d;
}

.banner-visible {
  display: flex;
}

.page-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.highlight-strip {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #ffffff;
  padding: 22px;
  border-radius: 16px;
}

.contact-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 14px;
}

.hero-secondary {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-secondary h1 {
  font-size: 34px;
}

.hero-secondary .image-frame {
  flex: 1 1 260px;
}

.story-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.story-columns > div {
  flex: 1 1 240px;
}

.disclaimer {
  font-size: 12px;
  color: #4a4a4a;
}
