* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Arial", "Helvetica", sans-serif;
  color: #1f1f1f;
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1f1f1f;
  text-decoration: none;
}

.site-header {
  padding: 18px 48px 8px;
}

.nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 13px;
  color: #58524a;
  max-width: 240px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 8px 48px 80px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(31, 31, 31, 0.08);
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1 1 52%;
  min-width: 260px;
}

.split .media {
  flex: 1 1 48%;
  min-width: 240px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #e8e2d9;
}

.hero {
  background: #fdf7f0;
}

.hero h1 {
  font-size: 42px;
  margin: 0 0 18px;
}

.hero p {
  font-size: 18px;
  margin: 0 0 20px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  background: #1f1f1f;
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-size: 15px;
  cursor: pointer;
}

.button.alt {
  background: #f2c94c;
  color: #1f1f1f;
}

.button:hover {
  opacity: 0.86;
}

.inline-link {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff6ed;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card .media {
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #f0d8c7;
}

.card strong {
  font-size: 16px;
}

.stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.stat {
  background: #f0efe9;
  padding: 14px 18px;
  border-radius: 14px;
  flex: 1 1 140px;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
}

.order-form label {
  font-weight: 600;
  font-size: 14px;
}

.order-form input,
.order-form select,
.order-form textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d6d1c8;
  font-size: 14px;
  width: 100%;
}

.order-form button {
  align-self: flex-start;
}

.note {
  font-size: 14px;
  color: #575049;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 12px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.sticky-cta button {
  border: none;
}

.footer {
  background: #1f1f1f;
  color: #ffffff;
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer a {
  color: #ffffff;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer small {
  color: #cfc8bf;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.tagline {
  font-size: 18px;
  font-weight: 600;
}

.light-panel {
  background: #f7efe6;
  border-radius: 24px;
  padding: 26px;
}

.two-column {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1 1 220px;
}

.page-title {
  font-size: 34px;
  margin: 0 0 18px;
}

@media (max-width: 960px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .site-header,
  main,
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    display: flex;
    justify-content: center;
  }
}
