* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #2b2a28;
  background: #f8f5f2;
  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;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6vw;
  background: #f8f5f2;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.brand a {
  font-size: 20px;
}

.ad-label {
  font-size: 12px;
  color: #6b625a;
  max-width: 260px;
}

.main-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #4d433a;
}

.main-nav a {
  padding: 6px 0;
}

.content {
  flex: 1;
}

.section {
  padding: 64px 6vw;
}

.section.alt {
  background: #efe9e2;
}

.bg-softfolds {
  background-image: url("https://images.unsplash.com/photo-1752595119182-6302ddb6d853?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-weave {
  background-image: url("https://images.unsplash.com/photo-1776164909194-bad9461153fa?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-beige {
  background-image: url("https://images.unsplash.com/photo-1776278515617-09ab61ec1eb8?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split .media {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.media .image-wrap {
  background: #ded6cd;
  border-radius: 18px;
  overflow: hidden;
}

.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #8a7c70;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 20px;
}

.lead {
  font-size: 18px;
  color: #4b4038;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #2b2a28;
  color: #f8f5f2;
  font-size: 14px;
  letter-spacing: 0.4px;
}

.btn.secondary {
  background: #d6c9bf;
  color: #2b2a28;
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid #8a7c70;
  align-self: flex-start;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 16px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  align-items: center;
}

.service-card .card-media {
  width: 140px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #e1d6cc;
}

.service-card .card-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price {
  font-weight: 600;
  color: #2b2a28;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list span {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
}

.booking-form label {
  font-size: 13px;
  color: #6b625a;
}

.booking-form select,
.booking-form input,
.booking-form textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d4c9be;
  font-size: 14px;
}

.booking-form button {
  border: none;
  cursor: pointer;
}

.note {
  font-size: 13px;
  color: #6b625a;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #2b2a28;
  color: #f8f5f2;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.3px;
  z-index: 20;
}

.site-footer {
  padding: 36px 6vw;
  background: #2b2a28;
  color: #f0e9e1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}

.disclaimer {
  font-size: 12px;
  color: #cdbfb2;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  display: none;
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #2b2a28;
  color: #f8f5f2;
}

.cookie-actions .reject {
  background: #d9cfc6;
  color: #2b2a28;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
}

.legal-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 980px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
