* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1d1f23;
  background: #f6f3ef;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrapper {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  padding: 24px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 20px;
}

.ad-label {
  font-size: 12px;
  color: #5b4b3b;
  background: #efe7dd;
  padding: 4px 8px;
  border-radius: 999px;
  width: fit-content;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.hero {
  padding: 32px 0 56px;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: #efe7dd;
}

.section.dark {
  background: #1f2328;
  color: #f4f1ec;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #7a6653;
  margin-bottom: 12px;
}

.section.dark .eyebrow {
  color: #f1d9b9;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

h1 {
  font-size: 38px;
}

h2 {
  font-size: 28px;
}

p {
  margin-bottom: 16px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.list li {
  list-style: none;
  padding-left: 18px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
}

.btn,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  background: #1f2328;
  color: #f6f3ef;
}

.btn-secondary {
  background: #efe7dd;
  color: #1f2328;
  border: 1px solid #1f2328;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.image-frame {
  background: #d9cec2;
  border-radius: 24px;
  overflow: hidden;
}

.image-frame.tall {
  min-height: 360px;
}

.image-frame.short {
  min-height: 260px;
}

.highlight {
  background: #fdf7f0;
  padding: 20px;
  border-radius: 18px;
  margin-top: 12px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  background: #fdf7f0;
  padding: 16px;
  border-radius: 16px;
}

.pricing-item span {
  font-weight: 600;
}

.form-card {
  background: #fdf7f0;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c8b9a8;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
}

.form-status {
  font-size: 13px;
  color: #6b3d2e;
}

.inline-quote {
  margin-top: 16px;
  padding-left: 16px;
  border-left: 3px solid #e1c8a3;
  font-style: italic;
}

footer {
  background: #1f2328;
  color: #f4f1ec;
  padding: 32px 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.disclaimer {
  font-size: 12px;
  color: #d6c7b4;
  margin-top: 16px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1f2328;
  color: #f6f3ef;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 10;
}

.sticky-cta button {
  background: #f6f3ef;
  color: #1f2328;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fdf7f0;
  border-radius: 18px;
  padding: 16px;
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 12;
  border: 1px solid #c8b9a8;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  padding: 40px 0;
}

.page-hero .split-text {
  max-width: 520px;
}

.small-note {
  font-size: 13px;
  color: #6b5a46;
}

.no-spacing p:last-child {
  margin-bottom: 0;
}
