* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f2a2e;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #1f2a2e;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 24px 6%;
  background: #f6f4f1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #d5d1ca;
  padding-bottom: 18px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  color: #5a656b;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav-links a:hover {
  border-color: #1f2a2e;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 40px 6% 96px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-panel {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 280px;
}

.hero {
  background: #f0ece6;
  padding: 36px;
  border-radius: 24px;
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #6b5f4e;
}

h1 {
  font-size: 36px;
  line-height: 1.2;
}

h2 {
  font-size: 28px;
  line-height: 1.2;
}

h3 {
  font-size: 20px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid #1f2a2e;
  background: #1f2a2e;
  color: #f6f4f1;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #1f2a2e;
}

.btn:hover {
  opacity: 0.9;
}

.media-frame {
  background: #d9d2c8;
  border-radius: 20px;
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e0dbd3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card .price {
  font-weight: 700;
  color: #1f2a2e;
}

.service-card .btn {
  align-self: flex-start;
}

.form-box {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #e0dbd3;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 14px;
  color: #3a4348;
}

select,
input,
textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #d1c9be;
  font-size: 14px;
  background: #fdfcfa;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.inline-link {
  text-decoration: underline;
}

.sticky-cta {
  position: sticky;
  bottom: 20px;
  align-self: flex-end;
  margin-top: -40px;
  background: #1f2a2e;
  color: #f6f4f1;
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  gap: 10px;
  z-index: 2;
}

.sticky-cta:hover {
  opacity: 0.9;
}

.footer {
  padding: 40px 6% 60px;
  background: #1f2a2e;
  color: #f6f4f1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f6f4f1;
  text-decoration: underline;
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border: 1px solid #d1c9be;
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 9;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  background: #f6f4f1;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.highlight {
  background: #efe6dc;
  padding: 18px;
  border-radius: 18px;
}

.refs {
  font-size: 13px;
}

.muted {
  color: #5a656b;
}

.form-note {
  font-size: 13px;
  color: #5a656b;
}
