* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  color: #1b1b1b;
  background: #f6f3ef;
  line-height: 1.6;
}

a {
  color: #1b1b1b;
  text-decoration: underline;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px 80px;
}

header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #d6cec6;
  padding-bottom: 16px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.ad-label {
  max-width: 220px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  background: #efe7dd;
  padding: 8px 10px;
}

.magazine-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.magazine-row.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1;
  min-width: 0;
}

.col.narrow {
  flex: 0.7;
}

.col.wide {
  flex: 1.3;
}

.section {
  margin-top: 48px;
}

.section.dark {
  background: #1d1b19;
  color: #f6f3ef;
  padding: 36px;
}

.section.soft {
  background: #efe7dd;
  padding: 36px;
}

.section-title {
  font-size: 28px;
  margin: 0 0 12px;
}

.hero-title {
  font-size: 42px;
  margin: 0 0 12px;
}

.btn {
  display: inline-block;
  background: #1b1b1b;
  color: #f6f3ef;
  padding: 12px 18px;
  border-radius: 24px;
  font-size: 14px;
  text-decoration: none;
}

.btn.alt {
  background: #a3532e;
}

.img-frame {
  background: #dcd2c6;
  padding: 6px;
}

.cover-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 18px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #ddd3c8;
}

.service-card .thumb {
  width: 180px;
  flex-shrink: 0;
}

.service-card .details {
  flex: 1;
}

.service-price {
  font-weight: 700;
  margin-top: 8px;
}

.cta-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2f2a26;
  color: #f6f3ef;
  padding: 18px 24px;
  margin-top: 40px;
}

.cta-strip a {
  color: #f6f3ef;
}

.form-area {
  background: #ffffff;
  border: 1px solid #d6cec6;
  padding: 24px;
}

.form-area label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-area input,
.form-area select,
.form-area textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 16px;
  border: 1px solid #cbbfb3;
  font-family: inherit;
}

.form-area button {
  border: none;
  cursor: pointer;
}

.disclaimer {
  font-size: 12px;
  color: #514a44;
  margin-top: 16px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #a3532e;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 28px;
  text-decoration: none;
  font-size: 13px;
}

.footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid #d6cec6;
  font-size: 14px;
}

.footer-columns {
  display: flex;
  gap: 24px;
}

.footer-columns .col {
  flex: 1;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid #d6cec6;
  padding: 16px;
  max-width: 320px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  background: #1b1b1b;
  color: #ffffff;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 12px;
}

.cookie-actions button.secondary {
  background: #8a8176;
}

@media (max-width: 960px) {
  header {
    flex-direction: column;
  }

  .magazine-row,
  .footer-columns,
  .service-card {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
