* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background-color: #f6f4f0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  width: 100%;
  overflow-x: hidden;
}

.header {
  padding: 22px 6%;
  background-color: #f6f4f0;
  border-bottom: 1px solid #ddd4c7;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  color: #4f4a43;
  max-width: 240px;
}

.section {
  padding: 70px 6%;
}

.section-tight {
  padding: 50px 6%;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero {
  min-height: 62vh;
  color: #fefdfb;
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.headline {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.subhead {
  font-size: 1.1rem;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background-color: #1a1a1a;
  color: #fefdfb;
  border-radius: 28px;
  font-weight: 600;
}

.btn-light {
  background-color: #fefdfb;
  color: #1a1a1a;
  border: 1px solid #fefdfb;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #6b6052;
  margin-bottom: 10px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #8a4f2c;
}

.image-frame {
  background-color: #e6e0d8;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame.rounded {
  border-radius: 24px;
}

.bg-layer {
  background-color: #e8e2d7;
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #1a1a1a;
}

.bg-callout {
  background-color: #efe7dc;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #1a1a1a;
}

.muted {
  color: #5d544b;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 16px;
}

.form-wrapper {
  background-color: #ffffff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbbfb1;
  background-color: #fefdfb;
  font-size: 1rem;
}

button {
  border: none;
  cursor: pointer;
}

.footer {
  padding: 40px 6%;
  background-color: #1a1a1a;
  color: #fefdfb;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.footer small {
  color: #d6cfc5;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  width: 100%;
  background-color: #1a1a1a;
  color: #fefdfb;
  padding: 14px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  max-width: 360px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background-color: #f3ede5;
  color: #6b6052;
  font-size: 0.85rem;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.info-grid .tile {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.wide-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #1a1a1a;
}

.page-title {
  font-size: 2.1rem;
  margin-bottom: 18px;
}

.simple-hero {
  background-color: #efe7dc;
  padding: 60px 6%;
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-content p {
  margin-bottom: 12px;
}
