.root {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f1f1f;
  background-color: #f7f4f0;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #f7f4f0;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 6vw 8px;
  background-color: #efe9e2;
  border-bottom: 1px solid #ddd1c4;
}

.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 18px;
  background-color: #f7f4f0;
}

.nav-links a:hover {
  background-color: #e7dfd6;
}

.ad-label {
  font-size: 0.85rem;
  color: #5c4d3f;
  padding: 6px 10px;
  border-radius: 16px;
  background-color: #e7dfd6;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 56px 6vw 40px;
  position: relative;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: 2.6rem;
  margin: 0;
}

.hero-text p {
  margin: 0;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 24px;
  background-color: #2d2a26;
  color: #fff;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #47423b;
}

.btn-secondary {
  background-color: #e7dfd6;
  color: #2d2a26;
}

.btn-secondary:hover {
  background-color: #d9cfc3;
}

.hero-visual {
  flex: 1 1 280px;
  display: flex;
  align-items: stretch;
  position: relative;
}

.hero-frame {
  flex: 1;
  background-color: #d9cfc3;
  border-radius: 28px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: stretch;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  right: -10px;
  bottom: -20px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  max-width: 220px;
}

.section {
  padding: 50px 6vw;
}

.section.alt {
  background-color: #efe9e2;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.copy {
  flex: 1 1 320px;
}

.image-frame {
  flex: 1 1 260px;
  min-height: 240px;
  border-radius: 22px;
  overflow: hidden;
  background-color: #d6ccc1;
  display: flex;
  align-items: stretch;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offset-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.offset-card {
  flex: 1 1 220px;
  background-color: #ffffff;
  padding: 18px;
  border-radius: 20px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
}

.offset-card.shift {
  margin-top: 20px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background-color: #d6ccc1;
}

.service-card .card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #2d2a26;
}

.background-panel {
  background-color: #ded2c5;
  border-radius: 28px;
  padding: 32px;
  color: #2d2a26;
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.background-panel .overlay {
  background-color: rgba(255, 255, 255, 0.86);
  padding: 24px;
  border-radius: 20px;
  max-width: 620px;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.quote {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 16px;
  border-left: 4px solid #b69a7a;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 540px;
}

.form-section label {
  font-weight: 600;
}

.form-section input,
.form-section select {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c9bdb2;
  font-size: 1rem;
}

.form-section button {
  align-self: flex-start;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 9;
  padding: 12px 18px;
  border-radius: 24px;
  background-color: #b15c46;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.sticky-cta:hover {
  background-color: #c56a52;
}

.footer {
  background-color: #2d2a26;
  color: #f4efe9;
  padding: 32px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer .disclaimer {
  font-size: 0.9rem;
  color: #d7cfc5;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  z-index: 10;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.simple-page {
  padding: 50px 6vw;
  flex: 1;
}

.info-block {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 18px;
}

.list-plain {
  padding-left: 20px;
  margin: 8px 0;
}

.legal-note {
  font-size: 0.95rem;
  color: #4e453c;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #d6ccc1;
}

@media (max-width: 860px) {
  .hero {
    padding-top: 30px;
  }

  .floating-card {
    position: static;
    max-width: none;
  }
}
