*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background: #f7f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.header {
  padding: 24px 0 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(31, 31, 31, 0.06);
}

.hero {
  position: relative;
  padding: 48px 0 60px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 20% 0 auto 0;
  height: 60%;
  background: #efe7df;
  z-index: -1;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero-text p {
  margin: 0 0 18px;
  max-width: 520px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: 0.2s ease;
}

.btn-primary {
  background: #1f1f1f;
  color: #f7f4f1;
}

.btn-outline {
  border-color: #1f1f1f;
}

.btn-accent {
  background: #b2513c;
  color: #fff8f2;
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: #fffaf6;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(31, 31, 31, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  height: 160px;
  object-fit: cover;
}

.tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7c6a5d;
}

.highlight {
  background: #1f1f1f;
  color: #fffaf6;
  padding: 16px 20px;
  border-radius: 18px;
}

.quote {
  font-style: italic;
  background: #efe7df;
  padding: 20px 24px;
  border-radius: 16px;
}

.price-card {
  border: 1px solid #ddd1c8;
  background: #fefcfb;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
}

.form-wrap {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(31, 31, 31, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9cfc6;
  font-size: 1rem;
  background: #fffdfb;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  left: 18px;
  background: #fff8f2;
  border-radius: 999px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(31, 31, 31, 0.12);
  z-index: 20;
}

.sticky-cta span {
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  max-width: 340px;
  background: #1f1f1f;
  color: #fff;
  padding: 18px;
  border-radius: 16px;
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  padding: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #fff;
  color: #1f1f1f;
}

.cookie-reject {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.footer {
  padding: 40px 0 80px;
  font-size: 0.9rem;
  color: #5c5148;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
}

.sidebar-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 8px 14px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(31, 31, 31, 0.08);
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .hero-layout {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .form-actions {
    flex-direction: row;
    align-items: center;
  }

  .sidebar-layout {
    flex-direction: row;
  }

  .info-grid {
    flex-direction: row;
  }
}
