* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a30;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6vw 18px;
  background: #f0ebe5;
  gap: 16px;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.85rem;
  color: #5a4e44;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-cta {
  display: flex;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #27323a;
  color: #fdfaf6;
  font-weight: 600;
  border: 1px solid #27323a;
}

.btn-ghost {
  background: transparent;
  color: #27323a;
}

.btn:hover,
.btn-ghost:hover,
.link-inline:hover {
  opacity: 0.85;
}

.main {
  flex: 1;
}

.section {
  padding: 60px 6vw;
}

.section.alt {
  background: #ffffff;
}

.section.deep {
  background: #e9e3db;
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 28px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > * {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: #6f665a;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.2rem;
}

.lead {
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f0ebe5;
  font-size: 0.85rem;
  margin-right: 8px;
  margin-top: 8px;
}

.image-frame {
  background: #d7d1c8;
  padding: 10px;
  border-radius: 18px;
}

.image-frame img {
  border-radius: 14px;
  height: 100%;
  max-height: 420px;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fdfaf6;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e5ded6;
}

.price {
  font-weight: 700;
  color: #1b262c;
}

.form-shell {
  background: #fdfaf6;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e5ded6;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c2b8;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #f05b48;
  color: #fffaf5;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 50;
}

.sticky-cta:hover {
  opacity: 0.88;
}

.site-footer {
  background: #1f2a30;
  color: #f7f5f2;
  padding: 36px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d8d2cb;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid #e5ded6;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 60;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.legal-section {
  max-width: 720px;
}

.small-note {
  font-size: 0.9rem;
  color: #5a4e44;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.link-inline {
  color: #27323a;
  text-decoration: underline;
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
