* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Arial", sans-serif;
  color: #1d1d1d;
  background-color: #f6f5f1;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background-color: #efece3;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  font-size: 22px;
  letter-spacing: 1px;
}

.ad-label {
  font-size: 12px;
  color: #6b6b6b;
  line-height: 1.4;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  font-size: 15px;
}

.content {
  flex: 1;
  padding: 40px 6vw 90px 6vw;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 48px;
  border-radius: 28px;
  color: #f9f7f2;
  background-size: cover;
  background-position: center;
  background-color: #2f3a2f;
  position: relative;
  overflow: hidden;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 18, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
}

.hero-media {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 240px;
  background-color: #d4d0c2;
  border-radius: 22px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.section-split.reverse {
  flex-direction: row-reverse;
}

.section-split .text {
  flex: 1;
  min-width: 260px;
}

.section-split .media {
  flex: 1;
  min-width: 260px;
  background-color: #d7d3c6;
  border-radius: 18px;
  overflow: hidden;
}

.section-split .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1;
  min-width: 220px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-media {
  width: 100%;
  height: 160px;
  background-color: #dcd7c9;
  border-radius: 14px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.price {
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background-color: #2f3a2f;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn-secondary {
  background-color: #ffffff;
  color: #2f3a2f;
  border: 1px solid #2f3a2f;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 13px;
  color: #4c4c4c;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cfcabf;
  font-size: 14px;
  font-family: inherit;
}

.inline-link {
  text-decoration: underline;
}

.highlight {
  background-color: #e4e0d3;
  padding: 18px;
  border-radius: 16px;
}

.bg-soft {
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 32px;
  color: #1f241f;
  background-color: #e0d9c8;
}

.bg-atelier {
  background-image: url("https://images.unsplash.com/photo-1432821596592-e2c18b78144f?w=1400&q=80");
}

.footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #d6d1c6;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
  color: #616161;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2f3a2f;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 16px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 80px;
  background-color: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.image-caption {
  font-size: 12px;
  color: #606060;
}

.legal-block {
  background-color: #ffffff;
  padding: 22px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .content {
    padding: 32px 6vw 120px 6vw;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
