* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2428;
  background: #f6f3ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.topbar {
  background: #f0ede9;
  padding: 18px 0;
  border-bottom: 1px solid #e1ddd6;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #5a5f63;
  max-width: 220px;
  text-align: right;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 48px 0 32px;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-media {
  flex: 0.9;
  min-height: 340px;
}

.img-wrap {
  background-color: #dfe5ea;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1f2428;
  color: #fff;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  border: 1px solid #1f2428;
  color: #1f2428;
}

.magazine-section {
  padding: 56px 0;
}

.columns {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.col {
  flex: 1;
}

.col-wide {
  flex: 1.4;
}

.col-narrow {
  flex: 0.6;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card-image {
  height: 160px;
}

.price {
  font-weight: 700;
  color: #163b2f;
}

.section-contrast {
  background: #121417;
  color: #f8f5f1;
}

.section-contrast a {
  color: #f8f5f1;
}

.section-bg {
  background-size: cover;
  background-position: center;
  color: #f8f5f1;
  background-color: #20262b;
}

.section-bg-city {
  background-image: url("https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?w=1400&q=80");
}

.section-bg .card {
  background: rgba(255, 255, 255, 0.08);
  color: #f8f5f1;
}

.inline-image {
  height: 220px;
}

.quote {
  font-style: italic;
  border-left: 3px solid #1f2428;
  padding-left: 16px;
}

.form-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.form-panel label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-panel select,
.form-panel input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfd5da;
  font-size: 0.95rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #ffdd87;
  color: #1f2428;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  font-weight: 600;
}

.footer {
  background: #0f1113;
  color: #dcd7d0;
  padding: 40px 0;
}

.footer-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer a {
  color: inherit;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 1000;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #1f2428;
  background: transparent;
  cursor: pointer;
}

.cookie-btn.primary {
  background: #1f2428;
  color: #fff;
  border-color: #1f2428;
}

.page-hero {
  padding: 40px 0 30px;
}

.page-hero .img-wrap {
  height: 260px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
}

@media (max-width: 900px) {
  .hero,
  .columns {
    flex-direction: column;
  }

  .hero-media {
    min-height: 240px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
