* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background: #f5f1ea;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.masthead {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background: #ffffff;
  border-bottom: 1px solid #e3ded7;
  gap: 12px;
}

.brand {
  font-size: 1.1rem;
  text-transform: lowercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.ad-label {
  background: #f0e7d8;
  color: #5a4631;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav a {
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

main {
  flex: 1;
}

.section {
  padding: 60px 6vw;
}

.section.light {
  background: #ffffff;
}

.section.sand {
  background: #f2e7d8;
}

.section.ink {
  background: #202124;
  color: #f8f4ee;
}

.section.bg-insight {
  background-color: #d8cfc3;
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section.bg-insight .section-bg {
  background: rgba(255, 255, 255, 0.9);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #64584b;
  max-width: 680px;
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 28px;
}

.col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1 1 260px;
}

.col-wide {
  flex: 2 1 340px;
}

.col-narrow {
  flex: 1 1 220px;
}

.hero {
  padding: 70px 6vw 40px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.15;
}

.hero p {
  font-size: 1.15rem;
  max-width: 520px;
}

.image-frame {
  background: #d7cabc;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
}

.frame-hero {
  min-height: 340px;
}

.frame-medium {
  min-height: 320px;
}

.frame-compact {
  min-height: 220px;
}

.frame-card {
  min-height: 180px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 220px;
  border: 1px solid #efe8dc;
}

.card strong {
  font-size: 1.1rem;
}

.price {
  font-size: 1.2rem;
  color: #6b4c2d;
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  border: none;
  background: #1f3d36;
  color: #f8f4ee;
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn.secondary {
  background: #f0e7d8;
  color: #5b4330;
}

.btn.light {
  background: #f8f4ee;
  color: #1f3d36;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

.lead-form label {
  font-weight: 600;
  font-size: 0.95rem;
}

.lead-form select,
.lead-form input,
.lead-form textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d4c9bb;
  font-size: 0.95rem;
  background: #ffffff;
}

.lead-form button {
  align-self: flex-start;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.95rem;
}

.testimonial {
  background: #faf6f0;
  border-left: 4px solid #b59162;
  padding: 14px 16px;
  border-radius: 12px;
}

.footer {
  background: #151515;
  color: #f8f4ee;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.legal-note {
  font-size: 0.85rem;
  color: #d8cfc3;
  max-width: 820px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 15;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.notice-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #ece3d5;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.columns .column {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.muted {
  color: #6f6256;
}

.centered {
  text-align: center;
}

.section-bg {
  background: #ede3d5;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.list-unstyled {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  flex: 1 1 260px;
  border: 1px solid #e6ddd0;
}

@media (max-width: 860px) {
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }
}
