* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4ef;
  --ink: #1d1d1b;
  --muted: #5d5b55;
  --accent: #7c6f63;
  --accent-dark: #4b4036;
  --soft: #efe9df;
  --highlight: #f2e7d4;
  --card: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a.inline-link {
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--soft);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--highlight);
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav-links a {
  color: var(--ink);
}

.nav-footer {
  margin-top: auto;
  font-size: 13px;
  color: var(--muted);
}

.content {
  flex: 1;
  padding: 32px 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero {
  background: var(--card);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(29, 29, 27, 0.08);
}

.hero-top {
  display: flex;
  gap: 28px;
  align-items: center;
}

.hero-media {
  flex: 0 0 48%;
}

.hero-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-title {
  font-size: 36px;
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #fff;
  border: none;
  font-size: 14px;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.section-card {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 14px 40px rgba(29, 29, 27, 0.08);
}

.split {
  display: flex;
  gap: 26px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: var(--card);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(29, 29, 27, 0.08);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-block label {
  font-weight: 600;
  font-size: 14px;
}

.form-block input,
.form-block select,
.form-block textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d9d3c9;
  font-size: 14px;
  background: #fff;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 320px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(29, 29, 27, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.image-frame {
  background: var(--highlight);
  border-radius: 18px;
  padding: 10px;
}

.image-frame img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
}

.mini-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  background: var(--highlight);
  border-radius: 999px;
  font-size: 12px;
}

.mobile-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--accent-dark);
  color: #fff;
  border: none;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .content {
    padding: 24px;
  }

  .hero-top {
    flex-direction: column;
  }

  .hero-top img {
    width: 100%;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }
}
