* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4f0;
  --ink: #1f1d1a;
  --muted: #5f5a54;
  --accent: #b7673c;
  --accent-dark: #8c4c2a;
  --surface: #ffffff;
  --sand: #efe6dc;
  --sage: #e3ebe6;
  --steel: #dfe5ec;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw 10px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 22px;
  letter-spacing: 0.4px;
}

.brand span {
  font-size: 13px;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--muted);
  padding: 4px 8px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px 6vw 60px;
}

.hero-split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-card {
  background: var(--surface);
  padding: 24px;
  border-radius: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.hero-visual {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-image {
  border-radius: 28px;
  overflow: hidden;
  background-color: var(--steel);
  min-height: 320px;
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  background: var(--sand);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--ink);
}

.btn-ghost:hover {
  border-color: var(--accent-dark);
  color: var(--accent-dark);
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section-alt {
  background: var(--sand);
}

.section-sage {
  background: var(--sage);
}

.section-steel {
  background: var(--steel);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 300px;
}

.offset-card {
  background: var(--surface);
  padding: 24px;
  border-radius: 24px;
  transform: translateY(-24px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
}

.img-frame {
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--sand);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: var(--surface);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.card-image {
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--steel);
}

.price {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-dark);
}

.inline-link {
  color: var(--accent-dark);
  text-decoration: underline;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
}

.form-wrap {
  background: var(--surface);
  border-radius: 28px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d0c8be;
  font-size: 14px;
  font-family: inherit;
}

.footer {
  padding: 40px 6vw;
  background: #1e1a16;
  color: #efe8e1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: inherit;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #cfc6bf;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.sticky-cta button {
  background: var(--accent-dark);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
}

.sticky-cta button:hover {
  background: #6c381e;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--surface);
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.page-title {
  font-size: 34px;
  margin: 0;
}

.muted {
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-card {
  background: var(--surface);
  padding: 24px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-block {
  background: var(--surface);
  padding: 24px;
  border-radius: 24px;
}

.reference-list a {
  color: #efe8e1;
  text-decoration: underline;
}
