* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background: #f7f4f0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 24px;
  gap: 20px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
  margin: 48px 0;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  padding: 24px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.split .media {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e6ded2;
  border-radius: 28px;
  padding: 20px;
  position: relative;
}

.split .media img {
  border-radius: 22px;
}

.overlap-card {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  font-size: 0.9rem;
  max-width: 200px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  margin: 20px 0 60px;
}

.hero .hero-text {
  flex: 1 1 340px;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.hero .hero-media {
  flex: 1 1 340px;
  background: #1c1c1c;
  border-radius: 30px;
  padding: 16px;
}

.hero .hero-media img {
  border-radius: 24px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: #1c1c1c;
  color: #f7f4f0;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.cta.secondary {
  background: transparent;
  border: 1px solid #1c1c1c;
  color: #1c1c1c;
}

.cta.light {
  background: #f2b73b;
  color: #1c1c1c;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 2px solid #1c1c1c;
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.tagline {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #7b6f62;
  margin-bottom: 12px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.card img {
  border-radius: 14px;
  margin-bottom: 12px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #b35c18;
}

.highlight {
  background: #1c1c1c;
  color: #f7f4f0;
  padding: 32px;
  border-radius: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin: 60px 0;
}

.highlight .cta {
  background: #f2b73b;
  color: #1c1c1c;
}

.form-block {
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d5cbbf;
  font-size: 0.95rem;
  background: #fbfaf8;
}

button {
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.footer {
  padding: 40px 24px 70px;
  background: #eae3d9;
  margin-top: 60px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #f2b73b;
  color: #1c1c1c;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.15);
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
}

.simple-section {
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  margin: 40px 0;
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
    text-align: center;
  }
}
