* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #2b2b2b;
  background-color: #fbf8f4;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 18px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.92rem;
}

.ad-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #f2e6dc;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-image: url("https://images.unsplash.com/photo-1572454591674-2739f30d8c40?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-overlay {
  background: rgba(44, 31, 26, 0.55);
  padding: 70px 0;
  width: 100%;
}

.hero-content {
  width: min(700px, 92%);
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.05rem;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 30px;
  background: #f7cbb0;
  color: #3a2a24;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid #f7cbb0;
  color: #f7cbb0;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.section {
  padding: 70px 0;
}

.section-muted {
  background: #f5efe9;
}

.section-dark {
  background: #2f1e1b;
  color: #f5efe9;
}

.bg-reveal {
  background-image: url("https://images.unsplash.com/photo-1581938165093-050aeb5ef218?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.story-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(35, 25, 22, 0.08);
}

.image-frame {
  background-color: #e7d8cf;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  height: 100%;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 28px rgba(28, 18, 16, 0.08);
}

.card img {
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
}

.card .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #8a4b3b;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  background: #fff;
  padding: 18px 22px;
  border-radius: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.timeline-item span {
  font-weight: 700;
  color: #8a4b3b;
}

.quote {
  border-left: 3px solid #d8b4a0;
  padding-left: 18px;
  margin: 14px 0;
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(37, 28, 26, 0.1);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 220px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e1d4cb;
  font-size: 0.95rem;
  background: #fff;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.form-status {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #8a4b3b;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.footer {
  padding: 40px 0;
  font-size: 0.9rem;
  border-top: 1px solid #e5d7ce;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 34px rgba(35, 25, 22, 0.18);
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.legal-hero {
  background: #f1e6dd;
  padding: 50px 0;
}

.legal-hero h1 {
  font-size: 2.1rem;
}

.legal-section {
  padding: 40px 0 70px;
}

.contact-card {
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(35, 25, 22, 0.1);
}

.address-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.note {
  font-size: 0.9rem;
  color: #6b4b42;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
