/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f6f3ef;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.image-shell {
  background: #dcd4cc;
  border-radius: 12px;
  overflow: hidden;
}

a {
  color: #1b1b1b;
  text-decoration: underline;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 0 6vw 72px;
}

.skip-link {
  position: absolute;
  left: -999px;
}

/* Navigation */
.top-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 6vw;
  background: #f0ede8;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  background: #1b1b1b;
  color: #f6f3ef;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

/* Magazine layout blocks */
.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 6vw;
  background: #222 url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80") center/cover no-repeat;
  color: #f6f3ef;
}

.hero .hero-content {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid #1b1b1b;
  background: #f6f3ef;
  color: #1b1b1b;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.button.dark {
  background: #1b1b1b;
  color: #f6f3ef;
  border-color: #1b1b1b;
}

.button.ghost {
  background: transparent;
  color: #f6f3ef;
  border-color: #f6f3ef;
}

.magazine-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.magazine-column {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.feature-card img {
  width: 100%;
  border-radius: 10px;
}

.full-bleed {
  width: 100%;
  background: #e7e0d9;
  padding: 36px 6vw;
}

.split-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split-row .text {
  flex: 1 1 320px;
}

.split-row .media {
  flex: 1 1 260px;
  background: #d7cfc7;
  border-radius: 16px;
  overflow: hidden;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid #e0d9d1;
}

.service-item .price {
  font-weight: 700;
  color: #2c3e50;
}

.accent-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  background: #1b1b1b;
  color: #f6f3ef;
  padding: 24px 6vw;
}

.accent-strip .stat {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e0d9d1;
}

.form-info {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-panel {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d8d1c9;
  font-family: inherit;
}

.form-panel textarea {
  min-height: 110px;
  resize: vertical;
}

.form-message {
  min-height: 24px;
  color: #8b1d1d;
}

.inline-cta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1b1b1b;
  color: #f6f3ef;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  gap: 8px;
  z-index: 10;
}

footer {
  background: #1b1b1b;
  color: #f6f3ef;
  padding: 36px 6vw 48px;
}

footer a {
  color: #f6f3ef;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-columns .col {
  flex: 1 1 220px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid #d8d1c9;
  padding: 16px;
  border-radius: 12px;
  display: none;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.simple-hero {
  padding: 40px 6vw;
  background: #e7e0d9;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-body {
  padding: 24px 6vw 72px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legal-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e0d9d1;
}

@media (max-width: 820px) {
  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: center;
  }
}
