* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a24;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  padding: 16px 6vw 0;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  background: #ebe2d7;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-links a:hover,
.cta-link:hover {
  text-decoration: underline;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px 6vw 10px;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-media {
  flex: 1 1 360px;
  min-height: 320px;
  border-radius: 20px;
  overflow: hidden;
  background: #d7d7d7;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.1);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 24px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: #1f2a24;
  color: #f6f4f1;
}

.btn.secondary {
  background: #cdded0;
  color: #1f2a24;
}

.btn:focus,
.btn:hover {
  transform: translateY(-1px);
}

.magazine-section {
  padding: 50px 6vw;
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.magazine-col {
  flex: 1 1 280px;
  min-width: 260px;
}

.panel {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.panel.light {
  background: #f1eee8;
}

.panel.dark {
  background: #1f2a24;
  color: #f6f4f1;
}

.panel.dark .cta-link {
  color: #f6f4f1;
}

.background-panel {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #24302a;
  color: #ffffff;
  position: relative;
}

.background-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 32, 27, 0.55);
  border-radius: 18px;
}

.background-panel > * {
  position: relative;
  z-index: 1;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  min-width: 220px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.service-image {
  height: 170px;
  background: #ded6cb;
}

.service-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-meta {
  font-weight: 700;
  color: #28352e;
}

.service-price {
  font-size: 1.1rem;
  font-weight: 700;
}

.service-cta {
  margin-top: auto;
}

.inline-image {
  border-radius: 16px;
  overflow: hidden;
  min-height: 220px;
  background: #cbd3cf;
}

.story-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e4e0d7;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.form-section {
  background: #f1eee8;
  padding: 40px 6vw 60px;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.form-panel {
  flex: 1 1 320px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c5c1b8;
  font-size: 1rem;
  font-family: inherit;
}

.form-panel textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: sticky;
  bottom: 10px;
  margin: 30px 6vw;
  background: #1f2a24;
  color: #f6f4f1;
  padding: 14px 20px;
  border-radius: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 4;
}

.sticky-cta button {
  background: #f6f4f1;
  color: #1f2a24;
}

.footer {
  margin-top: auto;
  background: #1f2a24;
  color: #f6f4f1;
  padding: 40px 6vw;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer a {
  color: #f6f4f1;
}

.legal {
  font-size: 0.85rem;
  opacity: 0.8;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-header {
  padding: 30px 6vw 10px;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.highlight {
  font-weight: 600;
  color: #2a3d33;
}

.divider {
  height: 1px;
  background: #c9c3b8;
  margin: 30px 0;
}

@media (max-width: 720px) {
  .hero {
    padding-top: 24px;
  }

  .sticky-cta {
    margin: 20px 4vw;
  }
}
