* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #2b2620;
  --muted: #6a5f55;
  --bg: #f7f3ef;
  --paper: #ffffff;
  --accent: #b6654a;
  --accent-dark: #8f4d39;
  --soft: #efe5dc;
  --sand: #e6d3c3;
  --shadow: 0 18px 40px rgba(26, 18, 12, 0.08);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

header {
  padding: 24px 6vw 10px;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  background: var(--soft);
  border-radius: 999px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 20px 6vw 80px;
}

.section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section.split {
  align-items: stretch;
}

.section.full {
  flex-direction: column;
  align-items: flex-start;
}

.panel {
  flex: 1 1 320px;
  min-width: 280px;
}

.card {
  background: var(--paper);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card-grid .card {
  flex: 1 1 240px;
}

.image-frame {
  background: var(--sand);
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  align-items: stretch;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  background: var(--paper);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-visual {
  flex: 1 1 320px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--soft);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.btn.light {
  background: var(--soft);
  color: var(--ink);
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 8px;
  background: var(--accent-dark);
}

.price-tag {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-card {
  background: var(--paper);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d5c6b9;
  font-size: 1rem;
}

.inline-cta {
  font-weight: 600;
}

.banner {
  background: var(--soft);
  padding: 18px;
  border-radius: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent-dark);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  display: flex;
  gap: 8px;
  align-items: center;
  box-shadow: var(--shadow);
  z-index: 20;
}

.sticky-cta button {
  background: #fff;
  color: var(--accent-dark);
  border: none;
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 600;
  cursor: pointer;
}

.legal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.legal-grid .card {
  flex: 1 1 260px;
}

footer {
  padding: 40px 6vw 80px;
  background: #efe7e0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--paper);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hide {
  display: none;
}

@media (max-width: 720px) {
  .hero-copy {
    padding: 24px;
  }

  header,
  main,
  footer {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
