*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1f2933;
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1f2933;
}

.site-header {
  background: #f1efe9;
  border-bottom: 1px solid #e1ddd5;
}

.ad-label {
  font-size: 0.85rem;
  padding: 10px 6vw;
  color: #3f4a59;
  background: #e6e1d7;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 6vw 26px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-cta {
  border: none;
  background: #1f2933;
  color: #f7f5f2;
  padding: 10px 18px;
  border-radius: 20px;
  cursor: pointer;
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: #ece7de;
}

.section.deep {
  background: #1f2933;
  color: #f7f5f2;
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 12px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1 1 320px;
  min-width: 280px;
}

.split-content h1,
.split-content h2,
.split-content h3 {
  margin-top: 0;
}

.image-frame {
  background: #d6d0c6;
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
}

.image-frame.tall {
  min-height: 360px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  border: none;
  background: #9b6b3c;
  color: #fff;
  padding: 12px 20px;
  border-radius: 22px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.button.secondary {
  background: #3f4a59;
}

.inline-cta {
  text-decoration: underline;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(31, 41, 51, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.dark {
  background: #2c3947;
  color: #f7f5f2;
}

.price {
  font-size: 1.4rem;
  font-weight: 600;
}

.testimonial {
  padding: 16px 0;
  border-top: 1px solid rgba(31, 41, 51, 0.2);
}

.service-selector {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-selector button {
  border: 1px solid #b9b2a5;
  background: #f7f5f2;
  padding: 12px 14px;
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
}

.service-selector button.active {
  background: #1f2933;
  color: #f7f5f2;
}

.form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 14px 32px rgba(31, 41, 51, 0.12);
}

.form-card label {
  display: block;
  margin-top: 14px;
  font-size: 0.9rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c2b5;
  margin-top: 6px;
  font-family: inherit;
}

.form-card textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: #5a6573;
  margin-top: 14px;
}

.form-locked {
  opacity: 0.7;
}

.form-locked input,
.form-locked textarea {
  background: #f0ede7;
}

.footer {
  background: #1f2933;
  color: #f7f5f2;
  padding: 48px 6vw;
}

.footer a {
  color: #f7f5f2;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.disclaimer {
  font-size: 0.85rem;
  margin-top: 20px;
  color: #d7d0c4;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #9b6b3c;
  color: #fff;
  padding: 12px 18px;
  border-radius: 22px;
  text-decoration: none;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -10px 30px rgba(31, 41, 51, 0.18);
  padding: 16px 6vw;
  display: none;
  z-index: 12;
}

.cookie-banner.active {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 10px 16px;
  border-radius: 18px;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #1f2933;
  color: #f7f5f2;
}

.cookie-actions .reject {
  background: #e1ddd5;
  color: #1f2933;
}

.legal-block {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(31, 41, 51, 0.08);
}

.simple-list {
  margin: 0;
  padding-left: 18px;
}

.notice {
  font-size: 0.9rem;
  color: #3f4a59;
}

@media (max-width: 768px) {
  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
