* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1f23;
  background: #f7f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.nav a {
  text-decoration: none;
  color: #1f1f23;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-color: #1f1f23;
}

.ad-label {
  font-size: 12px;
  color: #4a3c2f;
  border: 1px solid #d8cfc5;
  padding: 6px 10px;
  border-radius: 20px;
  background: #fff6ea;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 30px 0 60px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-text h1 {
  font-size: 40px;
  margin: 0 0 16px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-media {
  flex: 1 1 320px;
  min-height: 340px;
  background-color: #e6dcd2;
  border-radius: 24px;
  overflow: hidden;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 30px;
  background: #1f1f23;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.btn.secondary {
  background: #f0e5d9;
  color: #1f1f23;
}

.inline-link {
  color: #7a4d2c;
  text-decoration: underline;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: #f1e8dd;
}

.section.dark {
  background: #1f1f23;
  color: #f9f5f0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.split .copy {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  min-height: 280px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #d4c7bb;
}

.quote {
  font-size: 18px;
  font-style: italic;
  margin: 0 0 12px;
}

.quote span {
  font-weight: 600;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid #e3d8cd;
}

.card-media {
  height: 180px;
  background-color: #dcd1c6;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-body h3 {
  margin: 0;
  font-size: 18px;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: #7a4d2c;
}

.card a {
  text-decoration: none;
  color: #1f1f23;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.badge {
  background: #fff;
  color: #1f1f23;
  border: 1px solid #d8cfc5;
  padding: 4px 10px;
  border-radius: 18px;
  font-size: 12px;
  display: inline-flex;
}

.banner-section {
  background-image: url("https://images.unsplash.com/photo-1503341455253-b2e723bb3dbb?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #3b2f26;
  color: #fff;
}

.banner-overlay {
  background: rgba(31, 31, 35, 0.72);
  padding: 60px 0;
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid #e5d9cd;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d5c8bb;
  font-size: 16px;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  background: #1f1f23;
  color: #fff;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: 600;
}

.footer {
  margin-top: auto;
  background: #1f1f23;
  color: #f7f4f0;
  padding: 40px 0;
}

.footer a {
  color: #f7f4f0;
  text-decoration: none;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
}

.disclaimer {
  font-size: 13px;
  color: #d7cfc4;
  margin-top: 16px;
}

.page-hero {
  padding: 50px 0 30px;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: 34px;
}

.page-hero-media {
  margin-top: 24px;
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #d8cec4;
}

.simple-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.simple-card {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e3d8cd;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  padding: 10px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: #1f1f23;
  color: #fff;
}

.cookie-actions .reject {
  background: #f0e5d9;
  color: #1f1f23;
}

.reference-list {
  font-size: 13px;
  color: #cfc6bb;
  margin-top: 18px;
}

.highlight {
  background: #fff;
  padding: 16px;
  color: #1f1f23;
  border-radius: 16px;
  border: 1px solid #e3d8cd;
}

.tight {
  margin-top: 12px;
}

.note {
  font-size: 14px;
  color: #5a4a3f;
}
