* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: #1f2328;
  background-color: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #1f2328;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.nav {
  padding: 24px 0;
  background-color: #f6f4f1;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 20px;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  font-size: 13px;
  color: #7a4b2b;
  padding: 6px 10px;
  border: 1px solid #d1b6a3;
  border-radius: 20px;
  background-color: #f2e6dd;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 42px 0 64px;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-text h1 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 600;
}

.hero-text p {
  font-size: 18px;
  color: #30363b;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 24px;
  border: 1px solid #1f2328;
  background-color: #1f2328;
  color: #f6f4f1;
  font-size: 15px;
}

.btn-outline {
  background-color: transparent;
  color: #1f2328;
}

.hero-image {
  flex: 1;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #d9cfc6;
}

.section {
  padding: 64px 0;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
}

.split .media {
  flex: 1;
  min-height: 260px;
  border-radius: 22px;
  overflow: hidden;
  background-color: #dcd2c6;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  min-width: 220px;
  background-color: #fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(16, 24, 32, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  width: 100%;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #e7ded6;
}

.price {
  font-size: 20px;
  font-weight: 600;
  color: #7a4b2b;
}

.highlight {
  background-color: #efe6dd;
  border-radius: 28px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.background-block {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 44px;
  color: #1f2328;
  position: relative;
  overflow: hidden;
}

.background-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 244, 241, 0.86);
}

.background-block > * {
  position: relative;
  z-index: 1;
}

.inline-link {
  text-decoration: underline;
}

.form-wrap {
  background-color: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(20, 25, 30, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 500;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid #c9c1b8;
  font-size: 14px;
  background-color: #faf9f7;
}

.footer {
  padding: 48px 0 64px;
  background-color: #1f2328;
  color: #f6f4f1;
}

.footer a {
  color: #f6f4f1;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background-color: #1f2328;
  color: #f6f4f1;
  border-radius: 18px;
  padding: 16px 20px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border-radius: 18px;
  padding: 8px 16px;
  border: 1px solid #f6f4f1;
  background-color: transparent;
  color: #f6f4f1;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #7a4b2b;
  color: #fff;
  padding: 12px 18px;
  border-radius: 22px;
  z-index: 900;
}

.two-column {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.two-column > div {
  flex: 1;
}

.page-hero {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 32px 0 24px;
}

.page-hero .media {
  min-height: 220px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #e7ded6;
}

.notice {
  font-size: 14px;
  color: #4c4f54;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .two-column,
  .page-hero {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
