* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1f2a2e;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  background: #f0ebe4;
  border-bottom: 1px solid #d9d2c7;
  padding: 24px 6vw;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
}

.ad-label {
  font-size: 13px;
  color: #6b5d4f;
  background: #efe3d5;
  padding: 6px 12px;
  border-radius: 999px;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 54px;
  padding: 48px 6vw 80px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-text h1 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}

.hero-media {
  flex: 1 1 360px;
  min-height: 320px;
  background-color: #d8d9d5;
  border-radius: 24px;
  overflow: hidden;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  border: none;
  background: #1f2a2e;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 15px;
  cursor: pointer;
}

.btn.secondary {
  background: #efe3d5;
  color: #1f2a2e;
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.split-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.column {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mag-block {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(22, 22, 22, 0.08);
}

.mag-block.highlight {
  background: #f5efe8;
}

.image-frame {
  background-color: #cfd5d2;
  border-radius: 16px;
  overflow: hidden;
  min-height: 200px;
}

.bg-journey {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-color: #4e5b56;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-journey .section-title,
.bg-journey p {
  color: #fff;
}

.bg-heritage {
  background-image: url("https://images.unsplash.com/photo-1500534623283-312aade485b7?w=1400&q=80");
  background-color: #5b4f45;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-heritage .section-title,
.bg-heritage p {
  color: #fff;
}

.section-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(22, 22, 22, 0.08);
}

.service-card .price {
  font-size: 18px;
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.timeline-index {
  width: 34px;
  height: 34px;
  background: #1f2a2e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.callout {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  background: #1f2a2e;
  color: #fff;
  padding: 24px;
  border-radius: 20px;
}

.callout p {
  flex: 1 1 240px;
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.form-panel {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 14px 35px rgba(22, 22, 22, 0.08);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c4bc;
  font-size: 14px;
  background: #faf8f5;
}

textarea {
  min-height: 120px;
}

.note {
  font-size: 13px;
  color: #6b5d4f;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #efe3d5;
  padding: 12px 16px;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(22, 22, 22, 0.15);
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 20;
}

.footer {
  background: #1f2a2e;
  color: #f5efe8;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #d8cfc4;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(22, 22, 22, 0.16);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-title {
  font-size: 32px;
  margin-bottom: 12px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(22, 22, 22, 0.08);
}

.no-wrap {
  white-space: nowrap;
}

.references {
  font-size: 13px;
  color: #d8cfc4;
}

@media (max-width: 900px) {
  .sticky-cta {
    right: 16px;
    left: 16px;
    bottom: 16px;
    justify-content: space-between;
  }
}
