* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1e1e1e;
  background: #f7f5f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page {
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background: #f7f5f1;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 60px 6vw;
  position: relative;
}

.split-section.alt {
  background: #fff;
}

.split-section.deep {
  background: #1e1e1e;
  color: #f7f5f1;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content,
.split-visual {
  flex: 1;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7b6c57;
}

.deep .kicker {
  color: #d7c9b4;
}

.title {
  font-size: clamp(30px, 4vw, 48px);
  margin: 0;
}

.subtitle {
  font-size: 18px;
  margin: 0;
  color: #4a3f33;
}

.deep .subtitle {
  color: #d7c9b4;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1e1e1e;
  background: #1e1e1e;
  color: #f7f5f1;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button.outline {
  background: transparent;
  color: inherit;
}

.button.light {
  background: #f7f5f1;
  color: #1e1e1e;
  border-color: #f7f5f1;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card img {
  border-radius: 12px;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.layer {
  position: absolute;
  right: 8%;
  top: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 214, 170, 0.6);
  filter: blur(2px);
}

.layer.secondary {
  right: auto;
  left: 10%;
  top: auto;
  bottom: -30px;
  background: rgba(196, 215, 250, 0.7);
}

.form-block {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c9c0b5;
  font-size: 15px;
  font-family: inherit;
}

.form-note {
  font-size: 13px;
  color: #6d5b4a;
}

.footer {
  padding: 50px 6vw;
  background: #1e1e1e;
  color: #f7f5f1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #b84c2a;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  z-index: 4;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  padding: 18px;
  display: none;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.hero-image {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.hero-image .overlay-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(30, 30, 30, 0.75);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 18px;
}

.stat span {
  font-weight: 700;
  font-size: 24px;
}

.story-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.story-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.story-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b84c2a;
  margin-top: 8px;
}

.quote {
  background: rgba(255, 255, 255, 0.15);
  padding: 16px;
  border-radius: 16px;
}

.quote.light {
  background: #f1ede6;
}

.contact-box {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .stats {
    flex-direction: row;
    justify-content: space-between;
  }

  .split-section {
    padding: 80px 8vw;
  }
}
