* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background-color: #f6f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: #3e5c3f;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-bottom: 120px;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.top-bar {
  background-color: #111111;
  color: #f6f4f0;
  padding: 18px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-col,
.split .media-col {
  flex: 1;
}

.pill {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: #efe4d6;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.headline {
  font-size: clamp(28px, 4vw, 44px);
  margin: 12px 0;
  line-height: 1.2;
}

.subhead {
  font-size: 18px;
  margin: 0 0 24px;
  color: #4a4a4a;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-spaced {
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 30px;
  background-color: #1b1b1b;
  color: #f6f4f0;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.btn-light {
  background-color: #efe4d6;
  color: #1b1b1b;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  gap: 18px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 20px;
  align-items: center;
}

.card-image {
  background-color: #eadfd2;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.card-image img {
  width: 160px;
  height: 120px;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.bg-sand {
  background-color: #eadfd2;
}

.bg-ink {
  background-color: #222222;
}

.bg-olive {
  background-color: #e4e9d7;
}

.bg-lavender {
  background-color: #e6e3f1;
}

.bg-mist {
  background-color: #dfe7ee;
}

.image-frame {
  border-radius: 28px;
  overflow: hidden;
  padding: 12px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  border-radius: 22px;
}

.overlap-block {
  margin-top: -40px;
  background-color: #ffffff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.section-title {
  font-size: 24px;
  margin-bottom: 12px;
}

.inline-link {
  text-decoration: underline;
}

.form-shell {
  background-color: #ffffff;
  border-radius: 26px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form label {
  font-size: 14px;
  font-weight: 600;
}

form select,
form input {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d7d7d7;
  font-size: 14px;
  background-color: #ffffff;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1;
  min-width: 220px;
}

.footer {
  background-color: #111111;
  color: #f6f4f0;
  padding: 40px 0;
  font-size: 14px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-columns > div {
  flex: 1;
  min-width: 220px;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background-color: #1b1b1b;
  color: #f6f4f0;
  padding: 14px 20px;
  border-radius: 999px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 10;
}

.sticky-cta a {
  color: #f6f4f0;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 340px;
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  padding: 16px;
  display: none;
  z-index: 12;
}

.cookie-banner.visible {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  cursor: pointer;
}

.cookie-actions .accept {
  background-color: #1b1b1b;
  color: #f6f4f0;
}

.cookie-actions .reject {
  background-color: #efe4d6;
  color: #1b1b1b;
}

.page-hero {
  padding: 40px 0 10px;
}

.simple-section {
  padding: 20px 0;
}

.two-col {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1;
  min-width: 240px;
}
