* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1e20;
  background: #f6f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1d1e20;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 24px 80px;
}

header {
  background: #f6f4f0;
  padding: 24px 24px 0;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
}

.ad-label {
  background: #1d1e20;
  color: #f6f4f0;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 999px;
}

.magazine-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
  flex-wrap: wrap;
}

.col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 280px;
}

.col-wide {
  flex: 2 1 360px;
}

.panel {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel.dark {
  background: #1d1e20;
  color: #f6f4f0;
}

.panel.soft {
  background: #efeae2;
}

.section-title {
  font-size: 28px;
  margin: 0;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-size: 42px;
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #1d1e20;
  background: #1d1e20;
  color: #f6f4f0;
  font-weight: 600;
  font-size: 14px;
}

.btn.light {
  background: transparent;
  color: #1d1e20;
}

.btn:hover,
.nav-links a:hover {
  opacity: 0.85;
}

.image-frame {
  background: #d6d0c6;
  border-radius: 20px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.bg-section {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  color: #f6f4f0;
  display: flex;
  flex-direction: column;
}

.bg-section .bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bg-content {
  position: relative;
  padding: 28px;
  background: rgba(29, 30, 32, 0.7);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 220px;
}

.card .price {
  font-weight: 700;
}

.quote {
  font-style: italic;
  margin: 0;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #c9c1b6;
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

footer {
  background: #1d1e20;
  color: #f6f4f0;
  padding: 32px 24px 64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.footer-links a {
  color: #f6f4f0;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  align-self: flex-end;
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid #c9c1b6;
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 320px;
}

.notice {
  font-size: 13px;
  color: #59524b;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #c9c1b6;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.split-band {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.muted {
  color: #6b645b;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  background: #efeae2;
  padding: 6px 10px;
  border-radius: 999px;
}
