* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1d1b1a;
  background-color: #f7f4f1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  gap: 16px;
  background: #efe9e2;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #5b534b;
  border: 1px solid #c7bdb2;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1503341455253-b2e723bb3dbb?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fefcf9;
  padding: 80px 6vw;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 18, 15, 0.6);
}

.hero-content {
  position: relative;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  background: #d9a63b;
  color: #1d1b1a;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button.secondary {
  background: #fefcf9;
  border: 1px solid #d9a63b;
}

.section {
  padding: 64px 6vw;
}

.section-dark {
  background: #1f1a17;
  color: #fefcf9;
}

.split {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.offset-block {
  background: #efe9e2;
  padding: 28px;
  border-radius: 18px;
  margin-left: 40px;
}

.offset-block.alt {
  margin-left: 0;
  margin-right: 40px;
}

.img-wrap {
  background: #d9d2c7;
  border-radius: 18px;
  overflow: hidden;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fefcf9;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  background: #d9d2c7;
  border-radius: 12px;
  overflow: hidden;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #efe9e2;
  padding: 20px;
  border-radius: 16px;
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1 1 240px;
  background: #fefcf9;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card {
  background: #fefcf9;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c7bdb2;
  font-size: 1rem;
}

.footer {
  background: #151210;
  color: #fefcf9;
  padding: 40px 6vw;
  margin-top: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #fefcf9;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .button {
  flex: 1;
  justify-content: center;
}

.inline-link {
  text-decoration: underline;
}

.notice {
  font-size: 0.9rem;
  color: #5b534b;
}

.section-bg-image {
  background-image: url("https://images.unsplash.com/photo-1479064555552-3ef4979f8908?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fefcf9;
  position: relative;
}

.section-bg-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 13, 0.62);
}

.section-bg-image > * {
  position: relative;
}

.narrow {
  max-width: 720px;
}

.meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.meta-grid > div {
  flex: 1 1 220px;
  background: #efe9e2;
  padding: 18px;
  border-radius: 16px;
}

@media (max-width: 720px) {
  .offset-block,
  .offset-block.alt {
    margin: 0;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
