* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Arial", sans-serif;
  color: #1b1b1b;
  background-color: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 24px 6vw;
  background-color: #f6f4f1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.85rem;
  color: #604c3f;
}

nav ul {
  display: flex;
  gap: 18px;
  list-style: none;
  flex-wrap: wrap;
}

main {
  flex: 1;
}

.split {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 6vw;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 280px;
}

.split-media {
  flex: 1 1 320px;
  min-width: 280px;
}

.image-frame {
  background-color: #d8d2c9;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background-color: #ece6de;
  border-radius: 999px;
  font-size: 0.9rem;
  color: #5b463a;
  width: fit-content;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  background-color: #2e4c48;
  color: #fff;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.light {
  background-color: #f1c3a7;
  color: #2d1f16;
}

.btn.outline {
  background-color: transparent;
  color: #2e4c48;
  border: 1px solid #2e4c48;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background-color: #fff;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: #2e4c48;
}

.service-meta {
  font-size: 0.9rem;
  color: #5b463a;
}

.form-panel {
  background-color: #fff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  color: #4b3b31;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc7be;
  font-size: 0.95rem;
  background-color: #fff;
}

textarea {
  min-height: 90px;
  resize: vertical;
}

.testimonial {
  background-color: #fdfaf6;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #e7dfd6;
}

.highlight {
  background-image: url("https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(26, 26, 26, 0.55);
}

.highlight .split-content,
.highlight .split-media {
  position: relative;
  z-index: 1;
}

.accent {
  background-image: url("https://images.unsplash.com/photo-1493809842364-78817add7ffb?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.accent .image-frame {
  background-color: rgba(245, 240, 232, 0.85);
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background-color: #2e4c48;
  color: #fff;
  padding: 12px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.sticky-cta .btn {
  background-color: #f1c3a7;
  color: #2d1f16;
}

footer {
  padding: 32px 6vw;
  background-color: #efe9e1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.disclaimer {
  color: #5a4a3f;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  max-width: 320px;
  background-color: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #d9d1c7;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.small-note {
  font-size: 0.85rem;
  color: #5b463a;
}

.contact-card {
  background-color: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.two-column {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1 1 220px;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-block {
  background-color: #fff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #e2dad0;
}

.hidden {
  display: none;
}
