* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1b1a;
  background: #f6f3ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  margin: 0;
  font-size: 26px;
  letter-spacing: 0.4px;
}

.brand span {
  font-size: 14px;
  color: #5d534b;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}

.nav a,
.nav button {
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 24px;
  border: 1px solid #d8cfc5;
  background: #fefcf9;
  cursor: pointer;
}

.ad-label {
  font-size: 12px;
  color: #6f6258;
  border: 1px dashed #cbbeb4;
  padding: 6px 10px;
  border-radius: 20px;
  background: #fff7ef;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 30px;
  padding: 24px 0 48px;
}

.hero-text {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-image {
  flex: 1 1 420px;
  background: #e6d8cb;
  border-radius: 24px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  background: #1f1914;
  color: #fefaf6;
  padding: 12px 18px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.outline {
  background: transparent;
  color: #1f1914;
  border: 1px solid #1f1914;
}

.section {
  padding: 44px 0;
}

.section.alt {
  background: #efe7df;
}

.section.dark {
  background: #1f1914;
  color: #f8f1ea;
}

.section-title {
  font-size: 26px;
  margin: 0 0 16px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy,
.split .visual {
  flex: 1 1 320px;
}

.visual-card {
  background: #e8ddd1;
  border-radius: 20px;
  overflow: hidden;
}

.visual-card img {
  width: 100%;
  height: 320px;
}

.offset-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}

.offset-card {
  flex: 1 1 260px;
  background: #fffaf5;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #e6d8cb;
}

.offset-card img {
  width: 100%;
  height: 180px;
  border-radius: 14px;
}

.story-block {
  background: #fffaf5;
  border-left: 6px solid #1f1914;
  padding: 20px 24px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-item span {
  font-weight: 600;
  font-size: 14px;
  color: #6f6258;
  min-width: 90px;
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 240px;
  border-radius: 18px;
  background: #fffaf5;
  padding: 20px;
  border: 1px solid #e4d8cd;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 24px;
  font-weight: 600;
}

.inline-cta {
  color: #1f1914;
  text-decoration: underline;
}

.form-shell {
  background: #fffaf5;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d8cfc5;
  font-size: 15px;
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  background: #14100d;
  color: #e7dfd7;
  padding: 36px 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid div {
  flex: 1 1 200px;
}

.footer small {
  display: block;
  color: #c9bfb5;
  margin-top: 8px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 10;
  padding: 12px 16px;
  border-radius: 999px;
  background: #1f1914;
  color: #fff7ef;
  border: none;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fffaf5;
  border-top: 1px solid #d8cfc5;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 12;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  padding: 36px 0 12px;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: 30px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notice {
  background: #fffaf5;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid #e2d6ca;
}

.bg-section {
  background-size: cover;
  background-position: center;
  color: #fef9f4;
  position: relative;
}

.bg-luce-1 {
  background-image: url("https://images.unsplash.com/photo-1473186505569-9c61870c11f9?w=1400&q=80");
}

.bg-overlay {
  background: rgba(20, 16, 13, 0.6);
  padding: 44px 0;
}

.image-frame {
  background: #e2d3c7;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 260px;
}
