* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1f23;
  background: #f5f4f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  background: #e8e2d8;
  padding: 18px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 13px;
  color: #4d4d4d;
  background: #f7f0e6;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav {
  display: flex;
  gap: 16px;
  font-size: 14px;
  flex-wrap: wrap;
}

.nav a {
  padding: 6px 10px;
  border-radius: 18px;
  background: #f3efe9;
}

.hero {
  padding: 60px 6vw 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-size: 38px;
  max-width: 760px;
  letter-spacing: -0.5px;
}

.hero-grid {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  background: #f9f6f1;
  padding: 26px;
  border-radius: 18px;
}

.hero-image {
  flex: 1 1 320px;
  border-radius: 18px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1c1f23;
  color: #fff;
  border: none;
  font-size: 14px;
  cursor: pointer;
}

.button.light {
  background: #f2ede6;
  color: #1c1f23;
  border: 1px solid #cfc6b6;
}

.section {
  padding: 40px 6vw;
}

.section.alt {
  background: #ffffff;
}

.magazine-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.column {
  flex: 1 1 260px;
  background: #f8f4ed;
  border-radius: 18px;
  padding: 24px;
}

.column.dark {
  background: #1f2429;
  color: #f7f5f0;
}

.inline-image {
  margin: 18px 0;
  border-radius: 16px;
  overflow: hidden;
}

.inline-image img {
  width: 100%;
  height: 230px;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  border-radius: 14px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 170px;
}

.pricing {
  font-weight: 700;
  font-size: 16px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f8f4ed;
  padding: 26px;
  border-radius: 18px;
  max-width: 640px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfc6b6;
  font-size: 14px;
  background: #fff;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.split-feature {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: stretch;
}

.split-feature .feature-text {
  flex: 1 1 300px;
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
}

.split-feature .feature-image {
  flex: 1 1 300px;
  border-radius: 18px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: #1c1f23;
  color: #f7f5f0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer-note {
  font-size: 13px;
  color: #d7d1c6;
  max-width: 820px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1c1f23;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 10;
}

.sticky-cta button {
  background: #fff;
  color: #1c1f23;
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 340px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.notice {
  font-size: 14px;
  color: #4d4d4d;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.table-row {
  background: #f9f6f1;
  padding: 14px;
  border-radius: 12px;
}

.contact-box {
  background: #f7f3ec;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bg-sand {
  background: #d9d0c2;
}

.bg-warm {
  background: #d4c9ba;
}

.bg-clay {
  background: #d3cabd;
}

.bg-stone {
  background: #cfc6b6;
}

.legal-page {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.thanks {
  max-width: 640px;
  background: #f9f6f1;
  padding: 30px;
  border-radius: 18px;
}

.small {
  font-size: 13px;
  color: #6b6760;
}

@media (max-width: 720px) {
  .sticky-cta {
    left: 20px;
    right: 20px;
    justify-content: space-between;
  }
}
