* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Arial", sans-serif;
  color: #1f1f1f;
  background: #f7f4ef;
  line-height: 1.6;
}

a {
  color: #1f1f1f;
  text-decoration: none;
}

img {
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 6vw 12px;
  background: #f7f4ef;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #4d4d4d;
  border: 1px solid #d8cfc5;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff7ed;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 6vw 60px;
  background-color: #2b251f;
  background-image: url("https://images.unsplash.com/photo-1559766163-6401024bc066?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fefbf6;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 12, 0.55);
}

.hero-content {
  position: relative;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn {
  background: #f5b041;
  color: #1f1f1f;
}

.btn-secondary {
  background: #fefbf6;
  color: #1f1f1f;
  border: 1px solid #d9c7b1;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.split {
  flex-direction: row;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section.story {
  background: #fffaf2;
}

.section.layered {
  position: relative;
  background: #f0ebe4;
  overflow: hidden;
}

.section.layered::before {
  content: "";
  position: absolute;
  top: 0;
  right: 10%;
  width: 220px;
  height: 220px;
  background: rgba(245, 176, 65, 0.25);
  border-radius: 50%;
}

.section.dark {
  background-color: #231e1a;
  background-image: url("https://images.unsplash.com/photo-1757817301348-f91ce527b09b?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fffaf2;
  position: relative;
}

.section.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 15, 12, 0.6);
}

.section.dark .content {
  position: relative;
}

.section.cta {
  background-color: #2a211a;
  background-image: url("https://images.unsplash.com/photo-1504972090022-6edb81e4e534?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fefbf6;
  position: relative;
}

.section.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 20, 14, 0.65);
}

.section.cta .content {
  position: relative;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}

.media {
  flex: 1;
  min-width: 280px;
  min-height: 260px;
  background: #eadfce;
  border-radius: 24px;
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 100%;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(40, 34, 25, 0.08);
}

.card .media {
  height: 180px;
}

.quote {
  padding: 18px;
  border-left: 3px solid #f5b041;
  background: #fff7ed;
  font-style: italic;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1 1 260px;
  background: #1f1f1f;
  color: #fefbf6;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-section {
  background: #fffaf2;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-button {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #d9c7b1;
  background: #ffffff;
  cursor: pointer;
}

.service-button.active {
  background: #f5b041;
  border-color: #f5b041;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-fields label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

.form-fields input,
.form-fields select,
.form-fields textarea {
  padding: 10px;
  border-radius: 12px;
  border: 1px solid #d9c7b1;
  font-size: 14px;
  background: #fff;
}

.inline-link {
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  background: #1f1f1f;
  color: #fefbf6;
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.site-footer {
  margin-top: auto;
  background: #1f1f1f;
  color: #fefbf6;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.legal-disclaimer {
  font-size: 12px;
  color: #cfc7bb;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(40, 34, 25, 0.2);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.two-column {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff7ed;
  border: 1px solid #f3d7b2;
  font-size: 13px;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .section.split,
  .section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
