* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1b1f24;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #1b1f24;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.cover-img {
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 6vw;
  background: #f1ede8;
  border-bottom: 1px solid #d8d0c6;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.9rem;
  color: #5b4e3f;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 12px 6vw 20px;
  background: #fdfbf8;
  border-bottom: 1px solid #e4ddd2;
}

.main-nav a {
  font-size: 0.95rem;
  padding: 6px 4px;
}

.main-nav a:hover,
.main-nav a:focus {
  color: #8b5e34;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 80px 6vw 60px;
  background: linear-gradient(120deg, rgba(246, 244, 241, 0.92), rgba(246, 244, 241, 0.72)), url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80") center/cover no-repeat;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 0;
}

.hero p {
  max-width: 680px;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 30px;
  background: #1b1f24;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-secondary {
  background: #e7ded2;
  color: #1b1f24;
}

.btn:hover,
.btn:focus {
  background: #3a3f45;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: #d4c7b7;
}

.section {
  padding: 60px 6vw;
  background: #fdfbf8;
}

.section.alt {
  background: #f1ede8;
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.magazine-col {
  flex: 1 1 280px;
}

.magazine-col.wide {
  flex: 2 1 420px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(27, 31, 36, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card .price {
  font-weight: 700;
  color: #8b5e34;
}

.image-frame {
  background-color: #d8d0c6;
  border-radius: 14px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 220px;
}

.inline-image {
  height: 280px;
}

.quote {
  font-style: italic;
  margin: 0 0 12px;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(27, 31, 36, 0.1);
}

.form-wrapper label {
  font-weight: 600;
}

.form-wrapper input,
.form-wrapper select,
.form-wrapper textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbbeb0;
  background: #fbfaf8;
  font-size: 0.95rem;
}

.form-status {
  font-size: 0.9rem;
  color: #8b5e34;
}

.footer {
  padding: 32px 6vw 50px;
  background: #1b1f24;
  color: #fdfbf8;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #fdfbf8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 12px 20px;
  border-radius: 30px;
  background: #8b5e34;
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 99;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: #6f4a28;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 10px 24px rgba(27, 31, 36, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero {
  padding: 70px 6vw 50px;
  background: #f1ede8;
}

.page-hero h1 {
  margin: 0;
}

.simple-section {
  padding: 40px 6vw 60px;
  background: #fdfbf8;
}

.list-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.list-columns ul {
  margin: 0;
  padding-left: 18px;
}

.contact-panel {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(27, 31, 36, 0.08);
}

.notice {
  background: #e7ded2;
  padding: 12px 16px;
  border-radius: 12px;
}

.inline-cta {
  font-weight: 600;
  color: #8b5e34;
}
