* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f1a16;
  background: #f7f2ed;
  line-height: 1.6;
}

a {
  color: #2b5f4a;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #1f3f31;
}

img.img-cover {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  padding: 12px 24px;
  background: #efe7df;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 0.9rem;
  color: #5b4d43;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  padding: 70px 24px;
  background-image: url("https://images.unsplash.com/photo-1509042239860-f550ce710b93?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #3a2d27;
  color: #fff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 12, 10, 0.5);
}

.hero-content {
  position: relative;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #2b5f4a;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn:hover,
.btn:focus {
  background: #1f3f31;
}

.section {
  padding: 60px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #fff;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 300px;
}

.img-wrap {
  background-color: #d9c8b8;
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card .price {
  font-weight: 700;
  font-size: 1.1rem;
}

.banner-section {
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #3b3028;
  color: #fff;
  position: relative;
}

.banner-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 18, 14, 0.55);
}

.banner-content {
  position: relative;
  max-width: 820px;
}

.form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c9c0b7;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  padding: 30px 24px;
  background: #1f1a16;
  color: #efe7df;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.footer a {
  color: #f7e5d5;
}

.inline-link {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
}

.sticky-cta span {
  font-size: 0.9rem;
  color: #4a3f36;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.hidden {
  display: none;
}

.subtle {
  color: #5b4d43;
  font-size: 0.95rem;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-block {
  background: #efe7df;
  border-radius: 16px;
  padding: 18px;
}

.section-note {
  font-style: italic;
  color: #4a3f36;
}

.title-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote {
  background: #f7f2ed;
  border-left: 4px solid #2b5f4a;
  padding: 12px 16px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wide {
  max-width: 940px;
}

.center {
  text-align: center;
}

.note-tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #efe7df;
  color: #5b4d43;
  font-size: 0.85rem;
}

@media (max-width: 720px) {
  .sticky-cta {
    right: 12px;
    left: 12px;
    bottom: 12px;
    justify-content: space-between;
  }
}
