* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1c1b;
  background: #f7f3f0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  background: #efe8e1;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.nav {
  display: flex;
  gap: 16px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #4b3f39;
  background: #e0d5cc;
  padding: 6px 10px;
  border-radius: 14px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  padding: 12px 0;
}

.hero-text h1 {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-text p {
  max-width: 480px;
  margin-bottom: 20px;
}

.hero-media {
  flex: 1 1 420px;
  height: 420px;
  background: #d6c8bc;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  transform: translateY(12px);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #2d2622;
  color: #fff;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #b29c8a;
  color: #1f1c1b;
}

.btn.link {
  background: transparent;
  border: 1px solid #2d2622;
  color: #2d2622;
}

.section {
  margin-top: 64px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.section.alt {
  background: #efe8e1;
  padding: 32px;
  border-radius: 28px;
}

.section.backgrounded {
  background: #e7ded6;
  border-radius: 28px;
  padding: 36px;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.section.backgrounded::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 28, 27, 0.55);
}

.section.backgrounded .content,
.section.backgrounded .offset-card {
  position: relative;
  z-index: 1;
}

.section .content {
  flex: 1 1 320px;
}

.section .content h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.section .content p {
  margin-bottom: 16px;
}

.section .media {
  flex: 1 1 320px;
  height: 320px;
  background: #d6c8bc;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.offset-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 12px 32px rgba(31, 28, 27, 0.08);
  transform: translateY(-16px);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  min-width: 220px;
  box-shadow: 0 10px 24px rgba(31, 28, 27, 0.08);
}

.card .card-image {
  height: 180px;
  background: #d6c8bc;
}

.card .card-body {
  padding: 18px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.price {
  font-weight: 700;
  color: #2d2622;
}

.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.inline-cta {
  font-weight: 600;
  color: #6a4b3a;
  border-bottom: 1px solid #6a4b3a;
  display: inline-block;
}

.form-section {
  margin-top: 64px;
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.form-section form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-section label {
  font-size: 14px;
  font-weight: 600;
}

.form-section input,
.form-section select,
.form-section textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9b9ad;
  font-size: 14px;
  background: #fffdfb;
}

.form-section textarea {
  min-height: 100px;
  resize: vertical;
}

.form-aside {
  flex: 1 1 240px;
}

.form-aside h3 {
  margin-bottom: 12px;
}

.form-aside p {
  margin-bottom: 12px;
}

.split-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.split-blocks .block {
  flex: 1 1 180px;
  padding: 18px;
  background: #efe8e1;
  border-radius: 18px;
}

.footer {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid #d8c8bc;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
}

.footer .links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #6a4b3a;
  color: #fff;
  font-size: 13px;
  border: none;
  cursor: pointer;
  z-index: 40;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 24px;
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(31, 28, 27, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.banner-hidden {
  display: none;
}

.page-header {
  margin-top: 24px;
  display: flex;
  gap: 24px;
  align-items: flex-end;
}

.page-header h1 {
  font-size: 36px;
}

.page-header .tagline {
  max-width: 360px;
  font-size: 15px;
  color: #4b3f39;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 32px;
}

.contact-card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
}

.legal-section {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-section h2 {
  font-size: 22px;
}

.legal-section p {
  max-width: 760px;
}

.note {
  font-size: 13px;
  color: #5b4a42;
}

@media (max-width: 820px) {
  .hero-text h1 {
    font-size: 34px;
  }

  .hero-media {
    height: 320px;
  }

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-cta {
    right: 12px;
    bottom: 12px;
  }
}
