* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  background: #fff;
  border-bottom: 1px solid #e2ddd7;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f1ede6;
  font-size: 0.92rem;
}

.nav-links a:hover {
  background: #e7e1d8;
}

.ad-label {
  font-size: 0.82rem;
  color: #7a6f63;
  padding: 6px 10px;
  border: 1px dashed #d1c8bc;
  border-radius: 8px;
}

.main {
  flex: 1;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-tight {
  padding: 50px 6vw;
}

.section-bg {
  background: linear-gradient(120deg, rgba(26, 24, 22, 0.72), rgba(26, 24, 22, 0.3)),
    url("https://images.unsplash.com/photo-1460353581641-37baddab0fa2?w=1400&q=80") center/cover no-repeat;
  color: #f7f3ee;
}

.hero {
  background: linear-gradient(120deg, rgba(15, 15, 15, 0.6), rgba(15, 15, 15, 0.2)),
    url("https://images.unsplash.com/photo-1542291026-7eec264c27ff?w=1400&q=80") center/cover no-repeat;
  color: #fff;
  padding: 110px 6vw 90px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  background: #1c1c1c;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #333;
}

.btn.secondary {
  background: #fff;
  color: #1c1c1c;
  border: 1px solid #fff;
}

.btn.secondary:hover {
  background: #f0f0f0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 300px;
}

.image-frame {
  background: #d9d3cc;
  border-radius: 24px;
  overflow: hidden;
  min-height: 240px;
  display: flex;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #efe9e1;
  font-size: 0.9rem;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 32px rgba(28, 28, 28, 0.08);
}

.card .image-frame {
  height: 180px;
}

.card .image-frame img {
  border-radius: 16px;
  height: 100%;
  width: 100%;
}

.price-tag {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d2a25;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.inline-link:hover {
  color: #5c5246;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 16px 32px rgba(28, 28, 28, 0.08);
}

.form label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form input,
.form select,
.form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9d3cc;
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1c1c1c;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 12px 24px rgba(28, 28, 28, 0.2);
  z-index: 10;
}

.sticky-cta button {
  background: #fff;
  color: #1c1c1c;
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.sticky-cta button:hover {
  background: #f1ede6;
}

.footer {
  background: #1f1b17;
  color: #efe9e1;
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #efe9e1;
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(28, 28, 28, 0.2);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  border-radius: 999px;
  padding: 10px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #1c1c1c;
  color: #fff;
}

.cookie-reject {
  background: #efe9e1;
}

.cookie-actions button:hover {
  opacity: 0.9;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.info-panel {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #ece6df;
}

.centered {
  max-width: 780px;
}

@media (max-width: 760px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    bottom: 16px;
    justify-content: space-between;
  }
}
