* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1b1b1b;
  background-color: #f7f6f4;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.top-bar {
  padding: 18px 0;
  border-bottom: 1px solid #e4dfd9;
  background-color: #fffdf9;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  color: #5b4b3f;
  background: #f0e6dc;
  padding: 6px 10px;
  border-radius: 14px;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 32px;
  padding: 56px 0;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 360px;
}

.hero {
  padding-top: 40px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1.4px;
  color: #8a6d54;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  margin-bottom: 14px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

p {
  margin-bottom: 12px;
}

.button,
button {
  border: none;
  background-color: #1b1b1b;
  color: #fff;
  padding: 12px 18px;
  border-radius: 24px;
  font-size: 0.95rem;
  cursor: pointer;
}

.button.secondary,
button.secondary {
  background-color: #c9a88a;
  color: #1b1b1b;
}

.button.ghost,
button.ghost {
  background-color: transparent;
  border: 1px solid #1b1b1b;
  color: #1b1b1b;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background-color: #fff;
  border: 1px solid #e6e0d9;
  border-radius: 18px;
  overflow: hidden;
  flex: 1 1 220px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 16px;
}

.price {
  font-weight: 700;
  color: #7a5b44;
  margin-top: 6px;
}

.image-box {
  background-color: #e2d6cb;
  height: 220px;
}

.panel {
  background-color: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e6e0d9;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inline-link {
  color: #7a5b44;
  border-bottom: 1px solid #7a5b44;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-insight .panel {
  background-color: rgba(0, 0, 0, 0.45);
  border: none;
}

.form-card {
  background-color: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e6e0d9;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: #5b4b3f;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d9d2ca;
  font-size: 0.95rem;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background-color: #fffdf9;
  border-top: 1px solid #e4dfd9;
  padding: 14px 0;
  z-index: 1;
}

.sticky-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  margin-top: auto;
  padding: 32px 0 40px;
  background-color: #1f1c19;
  color: #f7f6f4;
}

.footer a {
  color: #f7f6f4;
  border-bottom: 1px solid transparent;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #fff;
  border: 1px solid #e6e0d9;
  border-radius: 16px;
  padding: 16px;
  width: min(360px, 90%);
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.legal-section {
  padding: 48px 0;
}

.legal-section .panel {
  margin-top: 16px;
}

@media (max-width: 860px) {
  .split {
    padding: 42px 0;
  }

  .menu {
    justify-content: flex-start;
  }
}
