* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background: #f6f1eb;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw 12px;
}

.nav-bar {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  background: #111;
  color: #fff;
  padding: 6px 10px;
  border-radius: 14px;
}

.hero {
  display: flex;
  min-height: 70vh;
  align-items: flex-end;
  padding: 48px 6vw;
  color: #fff;
  background-color: #2d2d2d;
  background-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.7)
    ),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 720px;
}

.hero h1 {
  font-size: 42px;
  margin: 0 0 12px;
}

.hero p {
  margin: 0 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 22px;
  background: #f2c94c;
  color: #111;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #f2c94c;
  color: #f2c94c;
}

main {
  padding-bottom: 80px;
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.muted {
  background: #efe6dc;
}

.section.dark {
  background: #1b1b1b;
  color: #f7f1ea;
}

.magazine-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: stretch;
}

.column {
  flex: 1 1 280px;
  min-width: 240px;
}

.column.narrow {
  flex: 1 1 220px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.feature-card .price {
  font-size: 20px;
  font-weight: 700;
  color: #b2521f;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background-color: #c9b8a5;
}

.overlay-block {
  background-color: #3b3b3b;
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 56px;
  border-radius: 26px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 240px;
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card .price {
  font-weight: 700;
  color: #a94c1c;
}

.form-panel {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d7c9b6;
  font-size: 14px;
  background: #faf7f3;
}

.sticky-cta {
  position: sticky;
  bottom: 20px;
  margin: 0 6vw 32px;
  background: #111;
  color: #fff;
  border-radius: 18px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.sticky-cta button {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 8px 14px;
  border-radius: 16px;
  cursor: pointer;
}

footer {
  padding: 48px 6vw;
  background: #111;
  color: #f2eee9;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-wrap {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-hero {
  padding: 48px 6vw 24px;
  background: #efe6dc;
}

.page-hero .image-frame {
  max-width: 720px;
}

@media (max-width: 820px) {
  .hero h1 {
    font-size: 34px;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
