* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e1f1d;
  background-color: #f5f2ee;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1e1f1d;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background-color: #e8e1d8;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #544b43;
  border: 1px solid #b7aca0;
  padding: 6px 10px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 4vw 6vw 6vw;
  gap: 40px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.1;
  margin: 0;
}

.hero p {
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background-color: #1e1f1d;
  color: #f5f2ee;
  border: none;
  font-size: 14px;
  cursor: pointer;
}

.btn-light {
  background-color: #f5f2ee;
  color: #1e1f1d;
  border: 1px solid #1e1f1d;
}

.hero-visual {
  flex: 1 1 320px;
  position: relative;
  padding: 16px;
  background-color: #d9d0c5;
  align-self: stretch;
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  bottom: -30px;
  right: 20px;
  background-color: #f5f2ee;
  padding: 16px;
  width: 220px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.section {
  padding: 6vw;
}

.offset-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.offset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.offset-row.reverse {
  flex-direction: row-reverse;
}

.offset-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offset-image {
  flex: 1 1 260px;
  padding: 18px;
  background-color: #d9d0c5;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 240px;
  background-color: #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
}

.service-card .price {
  font-weight: 700;
  color: #2b5d4b;
}

.highlight-band {
  background-image: url("https://images.unsplash.com/photo-1493666438817-866a91353ca9?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f5f2ee;
  padding: 7vw 6vw;
}

.highlight-band .band-inner {
  background-color: rgba(30, 31, 29, 0.75);
  padding: 24px;
  max-width: 560px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #ffffff;
  padding: 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 13px;
}

input,
select,
textarea {
  padding: 10px;
  border: 1px solid #c9c0b6;
  font-size: 14px;
}

.sticky-cta {
  position: sticky;
  bottom: 20px;
  align-self: flex-end;
  margin: 0 6vw 6vw auto;
  background-color: #1e1f1d;
  color: #f5f2ee;
  padding: 12px 18px;
}

.legal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.legal-block {
  flex: 1 1 240px;
  background-color: #ffffff;
  padding: 18px;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background-color: #e8e1d8;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background-color: #ffffff;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.note {
  font-size: 13px;
  color: #4a4038;
}
