* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2428;
  background: #f6f4f0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  gap: 16px;
  background: #ffffff;
  border-bottom: 1px solid #ece7de;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0.4px;
}

.brand span {
  font-size: 13px;
  color: #6c737a;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.ad-label {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f3efe6;
  font-size: 12px;
  color: #4f5358;
}

.hero {
  padding: 40px 6vw 20px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
  min-width: 280px;
}

.section {
  padding: 60px 6vw;
}

.section.alt {
  background: #ffffff;
}

.section.soft {
  background: #efe9dd;
}

.section.bg-visual {
  background-color: #1f2428;
  background-image: url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section.bg-visual .inline-cta {
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}

.section-title {
  font-size: 32px;
  margin: 0 0 16px;
}

.lead {
  font-size: 18px;
  color: #3a3f43;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.cta-button,
.ghost-button {
  border: none;
  padding: 12px 20px;
  border-radius: 28px;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-button {
  background: #1f2428;
  color: #ffffff;
}

.ghost-button {
  background: #e4dccb;
  color: #1f2428;
}

.cta-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.image-frame {
  background: #e3ded4;
  border-radius: 16px;
  overflow: hidden;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.card h3 {
  margin: 0;
  font-size: 19px;
}

.price {
  font-weight: 600;
  color: #2d3b2f;
}

.inline-cta {
  color: #1f2428;
  border-bottom: 1px solid #1f2428;
  padding-bottom: 2px;
}

.form-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d6cec2;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  background: #1f2428;
  color: #ffffff;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.sticky-cta:hover {
  transform: translateY(-2px);
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 40px;
  background: #1f2428;
  color: #f0ede7;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.disclaimer {
  margin-top: 18px;
  color: #d2cbc0;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.small-button {
  padding: 8px 14px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  background: #1f2428;
  color: #ffffff;
}

.small-button.secondary {
  background: #e4dccb;
  color: #1f2428;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.info-block {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
}

.hero-image {
  height: 380px;
  width: 100%;
}

.tall-image {
  height: 460px;
  width: 100%;
}

.wide-image {
  height: 320px;
  width: 100%;
}

@media (max-width: 780px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
