* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1e1b16;
  background: #faf7f2;
}

img {
  object-fit: cover;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 6vw;
  font-size: 14px;
  background: #efe7dc;
  color: #3d3328;
}

.top-banner .ad-label {
  font-weight: 600;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 24px 6vw 8px;
}

.brand {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 15px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 40px 6vw 20px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-title {
  font-size: 44px;
  line-height: 1.1;
  margin: 0;
}

.hero-image {
  flex: 1 1 360px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #d8c7b6;
  min-height: 320px;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1e1b16;
  color: #faf7f2;
  font-weight: 600;
  gap: 8px;
}

.btn-outline {
  background: transparent;
  border: 1px solid #1e1b16;
  color: #1e1b16;
}

.offset-section {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 40px 6vw;
  align-items: center;
  background: #f4ede4;
}

.offset-section .text-block {
  flex: 1 1 320px;
}

.offset-section .image-block {
  flex: 1 1 280px;
  margin-left: auto;
  transform: translateY(-18px);
  background: #cdb8a6;
  border-radius: 20px;
  overflow: hidden;
}

.offset-section img {
  width: 100%;
  height: 320px;
}

.split-band {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px 6vw;
}

.split-card {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.card-image {
  background: #e5d8cb;
  border-radius: 14px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 180px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 6vw;
  background: #efe7dc;
}

.service-card {
  flex: 1 1 260px;
  background: #fffaf5;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card .price {
  font-size: 20px;
  font-weight: 700;
}

.story-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 40px 6vw 60px;
}

.story-row .image-block {
  flex: 1 1 300px;
  background: #d6c4b5;
  border-radius: 24px;
  overflow: hidden;
}

.story-row img {
  width: 100%;
  height: 360px;
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 6vw;
  background: #fff;
  position: relative;
}

.form-section .form-copy {
  flex: 1 1 280px;
}

.inline-image {
  margin-top: 16px;
  background: #d6c4b5;
  border-radius: 20px;
  overflow: hidden;
}

.inline-image img {
  width: 100%;
  height: 260px;
}

.form-panel {
  flex: 1 1 320px;
  background: #f7efe6;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d0c2b4;
  font-size: 15px;
}

.form-note {
  font-size: 14px;
  color: #9a3f2c;
  display: none;
}

.form-note.is-visible {
  display: block;
}

.quote-strip {
  padding: 20px 6vw 50px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.background-shift {
  background-color: #efe7dc;
  background-image: linear-gradient(
      rgba(239, 231, 220, 0.92),
      rgba(239, 231, 220, 0.92)
    ),
    url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.quote {
  background: #ffffff;
  padding: 16px 20px;
  border-left: 4px solid #a37f5c;
  border-radius: 12px;
}

.footer {
  padding: 30px 6vw 60px;
  background: #1e1b16;
  color: #f8f1e9;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer small {
  color: #d4c7b8;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  background: #1e1b16;
  color: #faf7f2;
  padding: 12px 20px;
  border-radius: 999px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 20;
}

.sticky-cta .btn {
  background: #faf7f2;
  color: #1e1b16;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 90px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  display: none;
  z-index: 30;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .btn {
  padding: 8px 14px;
  font-size: 14px;
}

.page-header {
  padding: 34px 6vw 10px;
  font-size: 36px;
  margin: 0;
}

.content-block {
  padding: 24px 6vw 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.content-block .text-block {
  flex: 1 1 320px;
}

.content-block .image-block {
  flex: 1 1 280px;
  background: #d6c4b5;
  border-radius: 20px;
  overflow: hidden;
}

.content-block img {
  width: 100%;
  height: 300px;
}

.legal-block {
  padding: 20px 6vw 50px;
  line-height: 1.6;
}

.contact-panel {
  background: #fffaf5;
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
