* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2328;
  background-color: #f7f4ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  padding: 20px 6vw 10px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background-color: #f1ece4;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

.ad-label {
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #1f2328;
  color: #fdf9f2;
  font-size: 12px;
  font-weight: 600;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  padding: 30px 6vw 40px 6vw;
  gap: 32px;
}

.hero-text {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-image {
  flex: 1 1 360px;
}

.hero-text h1 {
  font-size: 40px;
  line-height: 1.15;
  margin: 0;
}

.hero-text p {
  margin: 0;
  font-size: 18px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1f2328;
  background-color: #1f2328;
  color: #fdf9f2;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(31, 35, 40, 0.15);
}

.btn-outline {
  background-color: transparent;
  color: #1f2328;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 320px;
}

.section {
  padding: 55px 6vw;
}

.section.tone-light {
  background-color: #fdf9f2;
}

.section.tone-sage {
  background-color: #e6efe7;
}

.section.tone-ink {
  background-color: #1f2328;
  color: #fdf9f2;
}

.section.bg-loft {
  background-image: url("https://images.unsplash.com/photo-1493666438817-866a91353ca9?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #1f2328;
  background-blend-mode: multiply;
}

.section h2 {
  margin-top: 0;
  font-size: 28px;
}

.section h3 {
  margin-top: 0;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background-color: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 18px rgba(31, 35, 40, 0.08);
}

.card.dark {
  background-color: #2d3238;
  color: #fdf9f2;
}

.price {
  font-size: 20px;
  font-weight: 700;
}

.img-frame {
  border-radius: 18px;
  overflow: hidden;
  background-color: #d8d2c6;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.list {
  margin: 0;
  padding-left: 20px;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.form-card {
  background-color: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(31, 35, 40, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9c2b6;
  font-size: 15px;
  font-family: inherit;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.two-col > div {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer {
  padding: 35px 6vw 50px 6vw;
  background-color: #f1ece4;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background-color: #1f2328;
  color: #fdf9f2;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(31, 35, 40, 0.18);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background-color: #ffffff;
  border-radius: 18px;
  padding: 14px 18px;
  display: none;
  gap: 12px;
  align-items: center;
  box-shadow: 0 10px 26px rgba(31, 35, 40, 0.2);
  z-index: 30;
  max-width: 92vw;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #1f2328;
  background-color: transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

.pill.primary {
  background-color: #1f2328;
  color: #fdf9f2;
}

.center {
  text-align: center;
}

.meta-box {
  border-left: 3px solid #1f2328;
  padding-left: 14px;
}

.note {
  font-size: 13px;
  color: #5a5f66;
}

.spacer {
  height: 12px;
}
