* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1f1f;
  --muted: #5b5b5b;
  --paper: #f4f1ed;
  --accent: #3d4a5c;
  --accent-soft: #dfe5eb;
  --sand: #efe7dd;
  --olive: #6c7c63;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #faf7f3;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-right: 1px solid #e2ddd7;
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--accent-soft);
  padding: 10px 12px;
  border-radius: 10px;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 40px 56px 120px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px;
  border-radius: 28px;
  color: #ffffff;
  min-height: 360px;
  justify-content: space-between;
  background-size: cover;
  background-position: center;
}

.hero-portrait {
  background-image: url("https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=1400&q=80");
}

.bg-workshop {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: 42px;
  max-width: 520px;
}

.hero p {
  max-width: 520px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 18px;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
}

.section {
  display: flex;
  gap: 32px;
  align-items: center;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section .visual {
  flex: 1;
  background: var(--accent-soft);
  padding: 12px;
  border-radius: 24px;
}

.bg-soft-1 {
  background: #e7ecf1;
}

.bg-soft-2 {
  background: #efe7dd;
}

.bg-soft-3 {
  background: #e6e2da;
}

.bg-soft-4 {
  background: #dfe5eb;
}

.bg-soft-5 {
  background: #e0e6ec;
}

.section img {
  width: 100%;
  height: 320px;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  min-width: 240px;
  background: #ffffff;
  border-radius: 22px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card .card-media {
  background: var(--sand);
  border-radius: 16px;
  overflow: hidden;
}

.card .card-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.card .price {
  font-weight: 600;
  color: var(--olive);
}

.strip {
  padding: 28px 32px;
  background: var(--sand);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.strip.dark {
  background: #1f262e;
  color: #f8f8f8;
}

.form-wrap {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.form-box {
  flex: 1;
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.form-box label {
  font-size: 13px;
  color: var(--muted);
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d5d1cd;
  border-radius: 10px;
  font-size: 14px;
  background: #fbfaf8;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.floating-note {
  background: var(--accent-soft);
  padding: 18px;
  border-radius: 20px;
  flex: 0.8;
}

.footer {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1f262e;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
  cursor: pointer;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-header {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border-radius: 20px;
  background: var(--accent-soft);
}

.image-frame {
  padding: 8px;
  border-radius: 18px;
  background: var(--sand);
}

.image-frame img {
  width: 220px;
  height: 160px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 24px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.legal-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .content {
    padding: 32px 24px 120px;
  }

  .section,
  .section.reverse,
  .form-wrap {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
