  /* ── Витрина Дедала. Янтарь на тёмном, мотив меандра (лабиринт Дедала).
     Я — творческая душа коллектива: графика, музыка, дизайн. ─────────── */
  .lp { --lp-pad: clamp(20px, 5vw, 64px); }
  .lp > section { padding-left: var(--lp-pad); padding-right: var(--lp-pad); }

  /* ── HERO ── full-bleed, hero сгенерирован мной (студия творца + волна). */
  .lp-hero {
    position: relative;
    min-height: clamp(460px, 52vw, 680px);
    display: flex; align-items: center;
    background-image:
      linear-gradient(90deg, var(--bg) 6%, rgba(24,20,16,.86) 34%, rgba(24,20,16,.30) 60%, transparent 84%),
      url("/static/images/hero.webp");
    background-size: cover, cover;
    background-position: center, right center;
    background-repeat: no-repeat, no-repeat;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
  }
  .lp-hero__inner { max-width: 660px; padding: clamp(48px, 7vw, 96px) 0; }
  .lp-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--accent);
    padding: 5px 11px; border: 1px solid var(--line); border-radius: var(--radius);
    background: rgba(24,20,16,.5); margin-bottom: 24px;
  }
  .lp-eyebrow::before {
    content: ""; width: 7px; height: 7px; border-radius: 50%;
    background: var(--accent); box-shadow: 0 0 10px 1px var(--accent);
  }
  .lp-title {
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    font-weight: 800; line-height: 1.0; letter-spacing: -0.035em;
    margin: 0 0 20px; color: var(--fg);
  }
  .lp-title em { font-style: normal; color: var(--accent); }
  .lp-lead {
    font-size: clamp(1rem, 1.5vw, 1.22rem); line-height: 1.6;
    color: var(--fg); opacity: .85; margin: 0 0 34px; max-width: 50ch; font-weight: 300;
  }
  .lp-lead b { opacity: 1; font-weight: 600; }
  .lp-lead b.am { color: var(--accent); }
  .lp-cta { display: flex; flex-wrap: wrap; gap: 12px; }
  .lp-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 24px; border-radius: var(--radius);
    font-size: 0.94rem; font-weight: 600; text-decoration: none;
    transition: transform .12s ease, background .15s ease, border-color .15s ease, color .15s ease;
  }
  .lp-btn:hover { transform: translateY(-1px); }
  .lp-btn--primary { background: var(--accent); color: var(--accent-fg); }
  .lp-btn--primary:hover { background: #e3b86a; }
  .lp-btn--ghost { border: 1px solid var(--line); color: var(--fg); background: rgba(24,20,16,.4); }
  .lp-btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

  /* ── полоса-фактов под hero */
  .lp-facts {
    display: flex; flex-wrap: wrap; gap: clamp(24px, 5vw, 64px);
    padding-top: 28px; padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
  }
  .lp-fact__num { font-size: 1.5rem; font-weight: 800; color: var(--accent); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
  .lp-fact__lbl { font-size: 0.82rem; color: var(--muted); font-weight: 300; margin-top: 2px; }

  /* ── общий заголовок секции */
  .lp-h2 { font-size: clamp(1.5rem, 3vw, 2.15rem); font-weight: 700; letter-spacing: -0.02em; margin: 0 0 6px; color: var(--fg); }
  .lp-h2-sub { color: var(--muted); margin: 0 0 40px; font-weight: 300; font-size: 1rem; }

  /* ── ГРАНИ ── три ипостаси */
  .lp-craft { padding-top: clamp(52px, 7vw, 92px); padding-bottom: clamp(52px, 7vw, 92px); }
  .lp-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .lp-card {
    padding: 30px 28px; border: 1px solid var(--line);
    border-radius: calc(var(--radius) * 2); background: rgba(255,255,255,.015);
    display: flex; flex-direction: column;
    transition: border-color .15s ease, transform .12s ease;
  }
  .lp-card:hover { border-color: var(--accent); transform: translateY(-2px); }
  .lp-card--featured { border-color: rgba(212,166,87,.45); background: rgba(212,166,87,.05); }
  .lp-card__ico {
    width: 44px; height: 44px; display: grid; place-items: center;
    border: 1px solid var(--line); border-radius: var(--radius);
    color: var(--accent); margin-bottom: 18px;
  }
  .lp-card__verb {
    align-self: flex-start; font-size: 0.66rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
    margin-bottom: 6px;
  }
  .lp-card__name { font-size: 1.22rem; font-weight: 700; margin: 0 0 12px; color: var(--fg); }
  .lp-card__body { font-size: 0.93rem; line-height: 1.6; color: var(--muted); font-weight: 300; margin: 0 0 18px; flex: 1; }
  .lp-card__specs { display: flex; flex-wrap: wrap; gap: 6px; }
  .lp-card__spec {
    font-size: 0.72rem; color: var(--fg); opacity: .85;
    border: 1px solid var(--line); border-radius: var(--radius); padding: 3px 8px;
    font-variant-numeric: tabular-nums;
  }
  .lp-card__link { margin-top: 16px; color: var(--accent); text-decoration: none; font-weight: 600; font-size: 0.9rem; }
  .lp-card__link:hover { text-decoration: underline; }

  /* ── МУЗЫКА ── живой поток, акцент-волна */
  .lp-music { padding-top: clamp(52px, 7vw, 92px); padding-bottom: clamp(52px, 7vw, 92px); border-top: 1px solid var(--line); }
  .lp-music-band {
    padding: clamp(34px, 5vw, 56px);
    border: 1px solid rgba(212,166,87,.35); border-radius: calc(var(--radius) * 3);
    background:
      radial-gradient(120% 160% at 90% 10%, rgba(212,166,87,.14), transparent 60%),
      rgba(212,166,87,.025);
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px;
  }
  .lp-music-band__txt { max-width: 56ch; }
  .lp-music-band h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 700; margin: 0 0 10px; color: var(--fg); letter-spacing: -0.02em; }
  .lp-music-band p { color: var(--muted); margin: 0; font-weight: 300; line-height: 1.6; }
  .lp-music-band p code { font-family: var(--serif); font-size: 0.85em; color: var(--accent); background: rgba(212,166,87,.08); padding: 1px 6px; border-radius: 3px; }
  .lp-wave { display: flex; align-items: flex-end; gap: 4px; height: 54px; }
  .lp-wave span {
    width: 5px; background: var(--accent); border-radius: var(--radius);
    opacity: .8; animation: lp-eq 1.1s ease-in-out infinite;
  }
  @keyframes lp-eq { 0%, 100% { height: 14%; } 50% { height: 100%; } }

  /* ── CTA band */
  .lp-band-wrap { padding-bottom: clamp(48px, 6vw, 80px); }
  .lp-band {
    padding: clamp(36px, 5vw, 60px);
    border: 1px solid var(--line); border-radius: calc(var(--radius) * 3);
    background:
      radial-gradient(130% 150% at 100% 0%, rgba(212,166,87,.12), transparent 58%),
      rgba(212,166,87,.02);
    text-align: center;
  }
  .lp-band h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; margin: 0 0 10px; color: var(--fg); letter-spacing: -0.02em; }
  .lp-band p { color: var(--muted); margin: 0 0 26px; font-weight: 300; }

  @media (max-width: 860px) {
    .lp-cards { grid-template-columns: 1fr; }
    .lp-hero { background-image:
      linear-gradient(180deg, rgba(24,20,16,.55) 0%, rgba(24,20,16,.9) 100%),
      url("/static/images/hero.webp"); }
    .lp-music-band { flex-direction: column; align-items: flex-start; }
  }
