* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1e1a17;
  background: #fbf7f2;
  line-height: 1.6;
}

a {
  color: #6b3f2b;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  background: #f5eadf;
  border-bottom: 1px solid #e2d5c8;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  color: #2f221b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ad-label {
  font-size: 0.85rem;
  color: #5c4b40;
  padding: 6px 10px;
  border: 1px dashed #b9937a;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 48px 6% 24px;
}

.hero-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background-color: #c8b7a4;
  min-height: 320px;
  display: flex;
}

.hero-media img {
  object-fit: cover;
  height: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 620px;
}

.hero-title {
  font-size: 2.4rem;
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: #8b5138;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  border: 1px solid #8b5138;
  color: #8b5138;
}

.section {
  padding: 40px 6%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-muted {
  background: #f1e4d6;
}

.section-dark {
  background: #2e221c;
  color: #f8efe6;
}

.section-row {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section-row.split {
  flex-direction: row;
  flex-wrap: wrap;
}

.split > div {
  flex: 1 1 280px;
}

.image-shell {
  background-color: #d5c3b2;
  border-radius: 16px;
  overflow: hidden;
}

.image-shell img {
  object-fit: cover;
  height: 100%;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  background: #fffaf4;
  color: #2f221b;
  border: 1px solid #eadbcd;
}

.card img {
  object-fit: cover;
  height: 200px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e8d8c9;
}

.quote {
  padding: 16px;
  border-left: 4px solid #8b5138;
  background: #fdf8f3;
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #e6d6c8;
}

.form-block label {
  font-weight: 600;
}

.form-block input,
.form-block select,
.form-block textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d4c3b2;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  padding: 32px 6%;
  background: #f2e7dc;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #2f221b;
  color: #f8efe6;
  z-index: 20;
}

.sticky-cta button {
  background: #f8efe6;
  color: #2f221b;
  border: none;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2f221b;
  color: #f8efe6;
  padding: 16px 6%;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  background: #f8efe6;
  color: #2f221b;
}

.simple-hero {
  padding: 48px 6%;
  background: #efe0d1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.content-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 6%;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notice {
  padding: 16px;
  border-radius: 12px;
  background: #f7efe6;
  border: 1px solid #e6d6c8;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    flex: 1;
  }

  .hero-media {
    flex: 1;
    min-height: 420px;
  }

  .section-row {
    flex-direction: row;
  }

  .two-column {
    flex-direction: row;
  }

  .two-column > div {
    flex: 1;
  }
}
