* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1e1b1b;
  background-color: #f7f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 8%;
  background-color: #f2ece6;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 12px;
  color: #6b5858;
  border: 1px solid #c9bdb2;
  padding: 4px 8px;
  border-radius: 999px;
  background-color: #f9f5f2;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.hero {
  display: flex;
  flex-direction: row;
  gap: 32px;
  padding: 60px 8% 80px;
  position: relative;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 2;
}

.hero-text h1 {
  font-size: 40px;
  margin: 0;
}

.hero-text p {
  margin: 0;
  font-size: 17px;
  color: #453737;
}

.hero-card {
  align-self: flex-start;
  background-color: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(34, 28, 28, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-visual {
  flex: 0.9;
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-visual .image-frame {
  background-color: #d6c6bc;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
}

.hero-visual .image-frame img {
  height: 100%;
  min-height: 420px;
}

.floating-note {
  position: absolute;
  bottom: -24px;
  right: 10%;
  background-color: #fdf9f4;
  border: 1px solid #d1c0b6;
  padding: 16px 18px;
  border-radius: 16px;
  width: 220px;
  box-shadow: 0 10px 24px rgba(44, 35, 35, 0.18);
  font-size: 13px;
}

.section {
  padding: 70px 8%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.section.light {
  background-color: #faf7f3;
}

.section.dark {
  background-color: #eae0d7;
}

.section-title {
  font-size: 28px;
  margin: 0;
}

.section-row {
  display: flex;
  gap: 30px;
  align-items: center;
}

.section-row.reverse {
  flex-direction: row-reverse;
}

.offset-block {
  background-color: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(40, 30, 30, 0.12);
  margin-left: 6%;
}

.offset-block.right {
  margin-left: 0;
  margin-right: 6%;
}

.image-container {
  flex: 1;
  background-color: #d6c6bc;
  border-radius: 20px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background-color: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 18px rgba(44, 35, 35, 0.12);
}

.card .image-container img {
  height: 180px;
}

.price {
  font-weight: 700;
  color: #6c3d2c;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  background-color: #7b4a35;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background-color: #2f2a28;
}

.inline-link {
  color: #7b4a35;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #2f2a28;
  color: #fff;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
}

.form-wrap {
  background-color: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(44, 35, 35, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9bdb2;
  font-size: 14px;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  background-color: #1f1b1b;
  color: #f4eee7;
  padding: 40px 8%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

.disclaimer {
  font-size: 12px;
  color: #d7cdc3;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background-color: #ffffff;
  border: 1px solid #c9bdb2;
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(34, 28, 28, 0.2);
  max-width: 320px;
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  flex: 1;
}

.two-col {
  display: flex;
  gap: 26px;
  align-items: flex-start;
}

.two-col .text-block {
  flex: 1;
}

.two-col .visual-block {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.visual-block .panel {
  background-color: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(44, 35, 35, 0.12);
}

.page-header {
  padding: 50px 8% 30px;
  background-color: #f2ece6;
}

.page-header h1 {
  margin: 0 0 10px;
  font-size: 34px;
}

.legal-content {
  padding: 50px 8%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-details {
  background-color: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(44, 35, 35, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.services-list .service-item {
  display: flex;
  gap: 16px;
  background-color: #fff;
  padding: 18px;
  border-radius: 18px;
  align-items: center;
  box-shadow: 0 8px 18px rgba(44, 35, 35, 0.12);
}

.services-list .service-item .image-container img {
  height: 120px;
}

.thanks-box {
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(44, 35, 35, 0.12);
  max-width: 560px;
}

@media (max-width: 900px) {
  .hero,
  .section-row,
  .two-col,
  .services-list .service-item {
    flex-direction: column;
  }

  .offset-block,
  .offset-block.right {
    margin: 0;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
