* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1f1f;
  background: #f7f4f0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  background: #ffffff;
  border-bottom: 1px solid #e6e0d9;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
}

.ad-label {
  font-size: 12px;
  color: #6a5547;
  border: 1px solid #d9cdbf;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fbf7f3;
}

.hero {
  display: flex;
  gap: 24px;
  align-items: stretch;
  padding: 30px 0 10px;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-media {
  flex: 0.9;
  background: #e8ddd2;
  border-radius: 18px;
  overflow: hidden;
  min-height: 340px;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #efe7dd;
  font-size: 13px;
  font-weight: 600;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-row.spaced {
  margin-top: 18px;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  background: #1f1f1f;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #e5d7c8;
  color: #1f1f1f;
}

.section {
  padding: 40px 0;
}

.section.alt {
  background: #fff;
  border-radius: 18px;
  padding: 40px;
}

.bg-section {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.bg-section .bg-image {
  position: absolute;
  inset: 0;
  background: #e8ddd2;
}

.bg-section .bg-image img {
  width: 100%;
  height: 100%;
}

.bg-section .bg-content {
  position: relative;
  z-index: 1;
  padding: 32px;
  background: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  margin: 24px;
  border-radius: 14px;
}

.magazine-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.col-60 {
  flex: 1.2;
  min-width: 280px;
}

.col-40 {
  flex: 0.8;
  min-width: 220px;
}

.note-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(43, 30, 19, 0.08);
}

.image-card {
  background: #e8ddd2;
  border-radius: 16px;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
}

.callout {
  font-size: 18px;
  font-weight: 600;
}

.service-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1;
  min-width: 220px;
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 26px rgba(32, 24, 18, 0.08);
}

.service-card img {
  width: 100%;
  height: 160px;
}

.price {
  font-weight: 700;
  color: #4b2f20;
}

.form-wrap {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.form-card {
  flex: 1.1;
  min-width: 260px;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d6c9bc;
  font-size: 14px;
}

.side-info {
  flex: 0.9;
  min-width: 240px;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  margin: 0 auto 24px;
  max-width: 960px;
  background: #1f1f1f;
  color: #fff;
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.sticky-cta .btn {
  background: #f2d6bd;
  color: #1f1f1f;
}

.footer {
  padding: 40px 24px 60px;
  background: #1f1f1f;
  color: #f7f4f0;
}

.footer a {
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.tiny {
  font-size: 13px;
  color: #6c5a4d;
}

.section-title {
  font-size: 28px;
  margin-bottom: 12px;
}

.subtle {
  color: #5a4638;
}

.legal {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 24px;
}

.legal h1 {
  margin-top: 0;
}

.link-list {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
