* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1e1d1b;
  background: #f7f3ef;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: #1e1d1b;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6%;
  background: #f2ece6;
  border-bottom: 1px solid #e1d8cf;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.82rem;
  background: #ece2d6;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 48px 6% 24px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-media {
  flex: 1 1 360px;
  background: #e5ddd2;
  padding: 12px;
}

.hero-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.section {
  padding: 36px 6%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.split {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.section .col {
  flex: 1 1 280px;
}

.media-card {
  background: #e7dfd4;
  padding: 12px;
}

.media-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.magazine-row .tile {
  flex: 1 1 220px;
  padding: 18px;
  background: #f0e7dd;
  border: 1px solid #e0d4c6;
}

.floating-note {
  background: #f9f4ee;
  border-left: 4px solid #c6a789;
  padding: 16px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #3a2f27;
  color: #f7f3ef;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta.secondary {
  background: #c6a789;
  color: #1e1d1b;
}

.cta.ghost {
  background: transparent;
  border: 1px solid #3a2f27;
  color: #3a2f27;
}

.cta-block {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.pricing-card {
  flex: 1 1 240px;
  background: #f2ece6;
  border: 1px solid #e0d4c6;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: #e1d6cc;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.form-section {
  background: #efe6dc;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.form-field {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid #c9b8a6;
  border-radius: 8px;
  font-size: 1rem;
  background: #fffaf5;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2f251f;
  color: #f7f3ef;
  padding: 12px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-cta .cta {
  background: #f7f3ef;
  color: #2f251f;
}

.footer {
  background: #1e1d1b;
  color: #f7f3ef;
  padding: 32px 6%;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #f7f3ef;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.banner {
  position: fixed;
  left: 20px;
  bottom: 80px;
  background: #fdf8f2;
  border: 1px solid #d9cabb;
  padding: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.banner.visible {
  display: flex;
}

.banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.subtle-bg {
  background: #efe6dc;
  position: relative;
  overflow: hidden;
}

.subtle-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1494526585095-c41746248156?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.14;
}

.subtle-bg > * {
  position: relative;
  z-index: 1;
}

.simple-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 6%;
  align-items: center;
}

.simple-hero img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: #e4d8cd;
}

.content {
  padding: 24px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  background: #e7dfd4;
  border-radius: 999px;
  font-size: 0.85rem;
}

.note-box {
  background: #f2ece6;
  padding: 16px;
  border-left: 4px solid #3a2f27;
}
