* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f2328;
  background: #f7f3ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
  background-color: #d8c9bc;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  background: #efe7df;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 15px;
}

.ad-label {
  font-size: 12px;
  color: #5d5f63;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.hero {
  background: #fff9f3;
  padding: 48px 0 16px;
}

.section {
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}

.section.alt {
  background: #f1ebe4;
}

.split {
  display: flex;
  align-items: center;
  gap: 48px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-column {
  flex: 1;
  min-width: 0;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: #6b5b55;
  margin-bottom: 12px;
}

.headline {
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 18px;
}

.subhead {
  font-size: 18px;
  margin: 0 0 24px;
  color: #4a4f56;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1f2328;
  color: #fefaf6;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.btn.light {
  background: #efe7df;
  color: #1f2328;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.btn.inline {
  background: transparent;
  color: #1f2328;
  border: 1px solid transparent;
  padding: 0;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.05);
}

.card img {
  width: 110px;
  height: 90px;
  border-radius: 12px;
}

.list {
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e3d7cc;
  font-size: 12px;
  color: #3c3a38;
}

.image-frame {
  background: #e3d7cc;
  border-radius: 18px;
  overflow: hidden;
  padding: 10px;
}

.image-frame img {
  width: 100%;
  height: 360px;
  border-radius: 12px;
}

.background-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.15;
  background-color: #d9d2ca;
}

.background-image img {
  width: 100%;
  height: 100%;
}

.content {
  position: relative;
  z-index: 1;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-item strong {
  font-weight: 600;
}

.form-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.form-box label {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  color: #4a4f56;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 16px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 14px;
}

.form-box textarea {
  resize: vertical;
  min-height: 110px;
}

.footer {
  margin-top: auto;
  background: #1f2328;
  color: #fefaf6;
  padding: 36px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
}

.footer small {
  color: rgba(255, 255, 255, 0.7);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1f2328;
  color: #fefaf6;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  z-index: 12;
}

.cookie-banner p {
  margin: 0;
  font-size: 13px;
  color: #3f444a;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.highlight {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
}

.two-column-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.note {
  font-size: 13px;
  color: #5f646b;
}

@media (max-width: 960px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }

  .section {
    padding: 48px 24px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
